[Python-checkins] r67001 - in python/branches/release26-maint: Lib/bdb.py Lib/pdb.py Misc/NEWS

benjamin.peterson python-checkins at python.org
Wed Oct 22 23:19:41 CEST 2008


Author: benjamin.peterson
Date: Wed Oct 22 23:19:41 2008
New Revision: 67001

Log:
Merged revisions 67000 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r67000 | benjamin.peterson | 2008-10-22 16:16:34 -0500 (Wed, 22 Oct 2008) | 1 line
  
  fix #4150: pdb's up command didn't work for generators in post-mortem
........


Modified:
   python/branches/release26-maint/   (props changed)
   python/branches/release26-maint/Lib/bdb.py
   python/branches/release26-maint/Lib/pdb.py
   python/branches/release26-maint/Misc/NEWS

Modified: python/branches/release26-maint/Lib/bdb.py
==============================================================================
--- python/branches/release26-maint/Lib/bdb.py	(original)
+++ python/branches/release26-maint/Lib/bdb.py	Wed Oct 22 23:19:41 2008
@@ -320,6 +320,8 @@
         while t is not None:
             stack.append((t.tb_frame, t.tb_lineno))
             t = t.tb_next
+        if f is None:
+            i = max(0, len(stack) - 1)
         return stack, i
 
     #

Modified: python/branches/release26-maint/Lib/pdb.py
==============================================================================
--- python/branches/release26-maint/Lib/pdb.py	(original)
+++ python/branches/release26-maint/Lib/pdb.py	Wed Oct 22 23:19:41 2008
@@ -1224,9 +1224,7 @@
 
     p = Pdb()
     p.reset()
-    while t.tb_next is not None:
-        t = t.tb_next
-    p.interaction(t.tb_frame, t)
+    p.interaction(None, t)
 
 def pm():
     post_mortem(sys.last_traceback)
@@ -1289,9 +1287,7 @@
             print "Uncaught exception. Entering post mortem debugging"
             print "Running 'cont' or 'step' will restart the program"
             t = sys.exc_info()[2]
-            while t.tb_next is not None:
-                t = t.tb_next
-            pdb.interaction(t.tb_frame,t)
+            pdb.interaction(None, t)
             print "Post mortem debugger finished. The "+mainpyfile+" will be restarted"
 
 

Modified: python/branches/release26-maint/Misc/NEWS
==============================================================================
--- python/branches/release26-maint/Misc/NEWS	(original)
+++ python/branches/release26-maint/Misc/NEWS	Wed Oct 22 23:19:41 2008
@@ -27,6 +27,9 @@
 Library
 -------
 
+- Issue #4150: Pdb's "up" command now works for generator frames in post-mortem
+  debugging.
+
 - Issue #4092: Return ArgInfo as promised in the documentation from
   inspect.getargvalues.
 


More information about the Python-checkins mailing list