##// END OF EJS Templates
Backport PR #2544: Infinite loop when multiple debuggers have been attached....
Backport PR #2544: Infinite loop when multiple debuggers have been attached. Replaces pull-request #2388. Fixed infinite loop on exit in the event of where multiple debuggers have been attached an there is an uncaught exception. Test code: ```python from IPython.core.debugger import Tracer; Tracer() Tracer() raise Exception ``` Pinging @DamianHeard to review.

File last commit:

r4053:b45902e3
r9851:5fa1ae98
Show More
__init__.py
4 lines | 82 B | text/x-python | PythonLexer
try:
from decorator import *
except ImportError:
from _decorator import *