##// END OF EJS Templates
Remove _ipy reference to the InteractiveShell object again.
Thomas Kluyver -
Show More
@@ -29,7 +29,6 b' import re'
29 import sys
29 import sys
30 import tempfile
30 import tempfile
31 import types
31 import types
32 from weakref import proxy
33
32
34 try:
33 try:
35 from contextlib import nested
34 from contextlib import nested
@@ -1058,7 +1057,6 b' class InteractiveShell(SingletonConfigurable, Magic):'
1058
1057
1059 # Store myself as the public api!!!
1058 # Store myself as the public api!!!
1060 ns['get_ipython'] = self.get_ipython
1059 ns['get_ipython'] = self.get_ipython
1061 ns['_ipy'] = proxy(self) # Weak ref since this is a circular reference
1062
1060
1063 ns['exit'] = self.exiter
1061 ns['exit'] = self.exiter
1064 ns['quit'] = self.exiter
1062 ns['quit'] = self.exiter
General Comments 0
You need to be logged in to leave comments. Login now