##// END OF EJS Templates
Commenting out atexit.register(context.close)
Brian Granger -
Show More
@@ -665,7 +665,8 b' class KernelManager(HasTraits):'
665
665
666 def __init__(self, **kwargs):
666 def __init__(self, **kwargs):
667 super(KernelManager, self).__init__(**kwargs)
667 super(KernelManager, self).__init__(**kwargs)
668 atexit.register(self.context.close)
668 # Uncomment this to try closing the context.
669 # atexit.register(self.context.close)
669
670
670 #--------------------------------------------------------------------------
671 #--------------------------------------------------------------------------
671 # Channel management methods:
672 # Channel management methods:
General Comments 0
You need to be logged in to leave comments. Login now