diff options
author | Steven Silvester | 2014-10-19 15:26:55 -0500 |
---|---|---|
committer | Steven Silvester | 2014-10-19 15:26:55 -0500 |
commit | b47fc0da3a5bb7096fd4cf62ae75f6b3f766b9b8 (patch) | |
tree | acee9aa2ef362e23fcadb8417604e611a0ad3bd8 | |
parent | 8444a4b6a1463c3cc5af37a71fb3faaaedd6faf4 (diff) | |
download | scilab_kernel-b47fc0da3a5bb7096fd4cf62ae75f6b3f766b9b8.tar.gz scilab_kernel-b47fc0da3a5bb7096fd4cf62ae75f6b3f766b9b8.tar.bz2 scilab_kernel-b47fc0da3a5bb7096fd4cf62ae75f6b3f766b9b8.zip |
Prep for 0.4 release
-rw-r--r-- | HISTORY.rst | 6 | ||||
-rw-r--r-- | scilab_kernel.py | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/HISTORY.rst b/HISTORY.rst index f623b30..2cbe046 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ Release History --------------- +0.4 (2014-10-19) +++++++++++++++++ +- Update for compatibility with Scilab2py 0.5 +- Update for compatibility with IPython 3.0 message spec changes. + + 0.3 (2014-08-23) ++++++++++++++++ - Add %inline --format and --size options. diff --git a/scilab_kernel.py b/scilab_kernel.py index dc3d8ca..4b26423 100644 --- a/scilab_kernel.py +++ b/scilab_kernel.py @@ -15,7 +15,7 @@ import base64 from shutil import rmtree from xml.dom import minidom -__version__ = '0.3' +__version__ = '0.4' version_pat = re.compile(r'version "(\d+(\.\d+)+)') @@ -65,7 +65,7 @@ class ScilabKernel(Kernel): scilab.restart() # start scilab and override gettext function self.log.info('starting up') - self.eval('_ = ""') + self.eval('_temp = 1;') self.log.info('started') finally: signal.signal(signal.SIGINT, sig) @@ -384,7 +384,7 @@ class ScilabKernel(Kernel): obj = getattr(sci, obj) return self.inspector.info(obj, detail_level=detail_level) - exist = self.eval('exists("%s")' % obj) + exist = self.eval('exists("%s");' % obj) if exist == 0 or exist is None: return info |