[Python-3000-checkins] r57546 - python/branches/py3k/Misc/gdbinit

neal.norwitz python-3000-checkins at python.org
Mon Aug 27 04:49:30 CEST 2007


Author: neal.norwitz
Date: Mon Aug 27 04:49:29 2007
New Revision: 57546

Modified:
   python/branches/py3k/Misc/gdbinit
Log:
Get gdb macros working with unicode and PyVarObject change

Modified: python/branches/py3k/Misc/gdbinit
==============================================================================
--- python/branches/py3k/Misc/gdbinit	(original)
+++ python/branches/py3k/Misc/gdbinit	Mon Aug 27 04:49:29 2007
@@ -32,7 +32,7 @@
     while $_i < f->f_nlocals
 	if f->f_localsplus + $_i != 0
 	    set $_names = co->co_varnames
-	    set $_name = PyString_AsString(PyTuple_GetItem($_names, $_i))
+	    set $_name = PyUnicode_AsString(PyTuple_GetItem($_names, $_i))
 	    printf "%s:\n", $_name
 	    # side effect of calling _PyObject_Dump is to dump the object's
 	    # info - assigning just prevents gdb from printing the
@@ -49,7 +49,7 @@
     set $__continue = 1
     set $__co = f->f_code
     set $__lasti = f->f_lasti
-    set $__sz = ((PyStringObject *)$__co->co_lnotab)->ob_size/2
+    set $__sz = ((PyVarObject *)$__co->co_lnotab)->ob_size/2
     set $__p = (unsigned char *)((PyStringObject *)$__co->co_lnotab)->ob_sval
     set $__li = $__co->co_firstlineno
     set $__ad = 0
@@ -74,7 +74,7 @@
 
 define pyframe
     set $__fn = (char *)((PyStringObject *)co->co_filename)->ob_sval
-    set $__n = (char *)((PyStringObject *)co->co_name)->ob_sval
+    set $__n = PyUnicode_AsString(co->co_name)
     printf "%s (", $__fn
     lineno
     printf "): %s\n", $__n


More information about the Python-3000-checkins mailing list