##// END OF EJS Templates
remove unnecessarily specific extract_module_locals_above
MinRK -
Show More
@@ -49,7 +49,7 b' from .core.error import TryNext'
49 from .core.interactiveshell import InteractiveShell
49 from .core.interactiveshell import InteractiveShell
50 from .testing import test
50 from .testing import test
51 from .utils.sysinfo import sys_info
51 from .utils.sysinfo import sys_info
52 from .utils.frame import extract_module_locals_above
52 from .utils.frame import extract_module_locals
53
53
54 # Release data
54 # Release data
55 __author__ = ''
55 __author__ = ''
@@ -60,7 +60,7 b' __version__ = release.version'
60
60
61 def embed_kernel(module=None, local_ns=None):
61 def embed_kernel(module=None, local_ns=None):
62 """Call this to embed an IPython kernel at the current point in your program. """
62 """Call this to embed an IPython kernel at the current point in your program. """
63 (caller_module, caller_locals) = extract_module_locals_above()
63 (caller_module, caller_locals) = extract_module_locals(1)
64 if module is None:
64 if module is None:
65 module = caller_module
65 module = caller_module
66 if local_ns is None:
66 if local_ns is None:
@@ -92,9 +92,3 b' def extract_module_locals(depth=0):'
92 module = sys.modules[global_ns['__name__']]
92 module = sys.modules[global_ns['__name__']]
93 return (module, f.f_locals)
93 return (module, f.f_locals)
94
94
95 def extract_module_locals_above():
96 """Returns (module, locals) of the funciton calling the caller.
97 Like extract_module_locals() with a specified depth of 1."""
98 # we're one frame away from the target, the function we call would be two frames away
99 return extract_module_locals(1 + 1)
100
General Comments 0
You need to be logged in to leave comments. Login now