##// END OF EJS Templates
Small Debugger fix seen only when using the code outside a running ipython instance
jdh2358 -
Show More
@@ -15,7 +15,7 b' details on the PSF (Python Software Foundation) standard license, see:'
15
15
16 http://www.python.org/2.2.3/license.html
16 http://www.python.org/2.2.3/license.html
17
17
18 $Id: Debugger.py 2203 2007-04-04 05:08:36Z fperez $"""
18 $Id: Debugger.py 2261 2007-04-20 17:50:00Z jdh2358 $"""
19
19
20 #*****************************************************************************
20 #*****************************************************************************
21 #
21 #
@@ -72,7 +72,7 b' def BdbQuit_excepthook(et,ev,tb):'
72 if et==bdb.BdbQuit:
72 if et==bdb.BdbQuit:
73 print 'Exiting Debugger.'
73 print 'Exiting Debugger.'
74 else:
74 else:
75 ehook.excepthook_ori(et,ev,tb)
75 BdbQuit_excepthook.excepthook_ori(et,ev,tb)
76
76
77 def BdbQuit_IPython_excepthook(self,et,ev,tb):
77 def BdbQuit_IPython_excepthook(self,et,ev,tb):
78 print 'Exiting Debugger.'
78 print 'Exiting Debugger.'
@@ -1,3 +1,9 b''
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 2007-04-20 Ville Vainio <vivainio@gmail.com>
7 2007-04-20 Ville Vainio <vivainio@gmail.com>
2
8
3 * Extensions/ipy_render.py: added extension for easy
9 * Extensions/ipy_render.py: added extension for easy
General Comments 0
You need to be logged in to leave comments. Login now