##// END OF EJS Templates
Fix reset magic not properly clearing {_, _, ___}
Matthias Bussonnier -
Show More
@@ -298,7 +298,7 b' class DisplayHook(Configurable):'
298 298 self._, self.__, self.___ = '', '', ''
299 299
300 300 if '_' not in builtin_mod.__dict__:
301 self.shell.user_ns.update({'_':None,'__':None, '___':None})
301 self.shell.user_ns.update({'_':self._,'__':self.__,'___':self.___})
302 302 import gc
303 303 # TODO: Is this really needed?
304 304 # IronPython blocks here forever
General Comments 0
You need to be logged in to leave comments. Login now