Re: gdb python C API

2005-07-21 Thread fraca7
[EMAIL PROTECTED] a écrit : > Actually, take a look in the distribution at Misc/gdbinit. In particular, > check out the pystack command. Wow, nice! This will be put to good use, thanks :) -- http://mail.python.org/mailman/listinfo/python-list

Re: gdb python C API

2005-07-21 Thread skip
fraca7> derrick a écrit : >> are there any tools / methods that others have used to get what line >> of the python script is being executed while running in gdb? or if it >> would actually show me the source python script (instead of the the >> python c source) that would help.

Re: gdb python C API

2005-07-21 Thread fraca7
derrick a écrit : > are there any tools / methods that others have used to get what line of > the python script is being executed while running in gdb? or if it would > actually show me the source python script (instead of the the python c > source) that would help. I don't think so, but when hav

gdb python C API

2005-07-19 Thread derrick
I have written a c program to interface with a newly installed version of python 2.4.1 on my system. The C program calls a module written in python that goes on to parse an xml file and do other xml specific operations. When I use the module in python, it seems to work alright, but when I try to us