Show More
@@ -15,7 +15,7 details on the PSF (Python Software Foundation) standard license, see: | |||
|
15 | 15 | |
|
16 | 16 | http://www.python.org/2.2.3/license.html |
|
17 | 17 | |
|
18 |
$Id: Debugger.py 22 |
|
|
18 | $Id: Debugger.py 2261 2007-04-20 17:50:00Z jdh2358 $""" | |
|
19 | 19 | |
|
20 | 20 | #***************************************************************************** |
|
21 | 21 | # |
@@ -72,7 +72,7 def BdbQuit_excepthook(et,ev,tb): | |||
|
72 | 72 | if et==bdb.BdbQuit: |
|
73 | 73 | print 'Exiting Debugger.' |
|
74 | 74 | else: |
|
75 | ehook.excepthook_ori(et,ev,tb) | |
|
75 | BdbQuit_excepthook.excepthook_ori(et,ev,tb) | |
|
76 | 76 | |
|
77 | 77 | def BdbQuit_IPython_excepthook(self,et,ev,tb): |
|
78 | 78 | print 'Exiting Debugger.' |
@@ -1,3 +1,9 | |||
|
1 | 2007-04-20 Fernando Perez <Fernando.Perez@colorado.edu> | |
|
2 | ||
|
3 | * IPython/Debugger.py (BdbQuit_excepthook): fix small bug that | |
|
4 | would prevent use of the exception system outside of a running | |
|
5 | IPython instance. | |
|
6 | ||
|
1 | 7 | 2007-04-20 Ville Vainio <vivainio@gmail.com> |
|
2 | 8 | |
|
3 | 9 | * Extensions/ipy_render.py: added extension for easy |
General Comments 0
You need to be logged in to leave comments.
Login now