##// END OF EJS Templates
Do not capture BdbQuit....
Matthias Bussonnier -
Show More
@@ -283,12 +283,6 b' class Pdb(OldPdb, object):'
283 self.color_scheme_table.set_active_scheme(scheme)
283 self.color_scheme_table.set_active_scheme(scheme)
284 self.parser.style = scheme
284 self.parser.style = scheme
285
285
286 def trace_dispatch(self, frame, event, arg):
287 try:
288 return super(Pdb, self).trace_dispatch(frame, event, arg)
289 except bdb.BdbQuit:
290 pass
291
292 def interaction(self, frame, traceback):
286 def interaction(self, frame, traceback):
293 try:
287 try:
294 OldPdb.interaction(self, frame, traceback)
288 OldPdb.interaction(self, frame, traceback)
@@ -2,6 +2,13 b''
2 5.x Series
2 5.x Series
3 ============
3 ============
4
4
5
6 IPython 5.2
7 ===========
8
9 * restore IPython's debugger to raise on quit. :ghpull:`10009`
10
11
5 IPython 5.1
12 IPython 5.1
6 ===========
13 ===========
7
14
General Comments 0
You need to be logged in to leave comments. Login now