##// END OF EJS Templates
Merge pull request #9475 from Carreau/t42-api-fix...
Thomas Kluyver -
r22351:13456a4d merge
parent child Browse files
Show More
@@ -49,8 +49,7 b' class ExtensionManager(Configurable):'
49 is added to ``sys.path`` automatically.
49 is added to ``sys.path`` automatically.
50 """
50 """
51
51
52 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC').tag(
52 shell = Instance('IPython.core.interactiveshell.InteractiveShellABC', allow_none=True)
53 allow_none=True)
54
53
55 def __init__(self, shell=None, **kwargs):
54 def __init__(self, shell=None, **kwargs):
56 super(ExtensionManager, self).__init__(shell=shell, **kwargs)
55 super(ExtensionManager, self).__init__(shell=shell, **kwargs)
@@ -13,7 +13,6 b' Authors:'
13 # Distributed under the terms of the Modified BSD License.
13 # Distributed under the terms of the Modified BSD License.
14
14
15 import os
15 import os
16 import struct
17 import sys
16 import sys
18 import warnings
17 import warnings
19 try:
18 try:
General Comments 0
You need to be logged in to leave comments. Login now