[Python-checkins] python/dist/src/Misc gdbinit,1.9,1.10

nascheme@users.sourceforge.net nascheme at users.sourceforge.net
Sat Aug 13 02:28:51 CEST 2005


Update of /cvsroot/python/python/dist/src/Misc
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17968/Misc

Modified Files:
	gdbinit 
Log Message:
Fix pystack command.


Index: gdbinit
===================================================================
RCS file: /cvsroot/python/python/dist/src/Misc/gdbinit,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- gdbinit	8 Jan 2005 21:56:43 -0000	1.9
+++ gdbinit	13 Aug 2005 00:28:41 -0000	1.10
@@ -98,7 +98,7 @@
 #end
 
 define printframe
-    if $pc > PyEval_EvalFrame && $pc < PyEval_EvalCodeEx
+    if $pc > PyEval_EvalFrameEx && $pc < PyEval_EvalCodeEx
 	pyframe
     else
         frame



More information about the Python-checkins mailing list