Show More
1 | NO CONTENT: file renamed from IPython/CrashHandler.py to IPython/core/crashhandler.py |
|
NO CONTENT: file renamed from IPython/CrashHandler.py to IPython/core/crashhandler.py |
@@ -4,3 +4,5 b'' | |||||
4 | def test_import_completer(): |
|
4 | def test_import_completer(): | |
5 | from IPython.core import completer |
|
5 | from IPython.core import completer | |
6 |
|
6 | |||
|
7 | def test_import_crashhandler(): | |||
|
8 | from IPython.core import crashhandler |
@@ -724,8 +724,8 b' class InteractiveShell(object,Magic):' | |||||
724 | if self.isthreaded: |
|
724 | if self.isthreaded: | |
725 | ipCrashHandler = ultraTB.FormattedTB() |
|
725 | ipCrashHandler = ultraTB.FormattedTB() | |
726 | else: |
|
726 | else: | |
727 |
from IPython import |
|
727 | from IPython.core import crashhandler | |
728 |
ipCrashHandler = |
|
728 | ipCrashHandler = crashhandler.IPythonCrashHandler(self) | |
729 | self.set_crash_handler(ipCrashHandler) |
|
729 | self.set_crash_handler(ipCrashHandler) | |
730 |
|
730 | |||
731 | # and add any custom exception handlers the user may have specified |
|
731 | # and add any custom exception handlers the user may have specified |
@@ -199,7 +199,7 b' def make_runners():' | |||||
199 | # decorator. See ticket https://bugs.launchpad.net/bugs/366209 |
|
199 | # decorator. See ticket https://bugs.launchpad.net/bugs/366209 | |
200 | top_mod = \ |
|
200 | top_mod = \ | |
201 | ['backgroundjobs.py', 'coloransi.py', 'completer.py', 'configloader.py', |
|
201 | ['backgroundjobs.py', 'coloransi.py', 'completer.py', 'configloader.py', | |
202 |
' |
|
202 | 'crashhandler.py', 'Debugger.py', 'deep_reload.py', 'demo.py', | |
203 | 'DPyGetOpt.py', 'dtutils.py', 'excolors.py', 'FakeModule.py', |
|
203 | 'DPyGetOpt.py', 'dtutils.py', 'excolors.py', 'FakeModule.py', | |
204 | 'generics.py', 'genutils.py', 'history.py', 'hooks.py', 'ipapi.py', |
|
204 | 'generics.py', 'genutils.py', 'history.py', 'hooks.py', 'ipapi.py', | |
205 | 'iplib.py', 'ipmaker.py', 'ipstruct.py', 'Itpl.py', |
|
205 | 'iplib.py', 'ipmaker.py', 'ipstruct.py', 'Itpl.py', |
General Comments 0
You need to be logged in to leave comments.
Login now