I'm trying to fix bugs from gedit plugins. Gedit uses C but some of its plugins are in Python. My computer is old and I cannot run an IDE. I've read about PDB (Python Debugger), but i cannot call the plugin directly with PDB. Is it possible set breakpoints in a gedit plugin, run gedit and then use PDB to debug? Thank you.

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

You could try editing the gedit plugins that you want to debug and putting

import pdb; pdb.set_trace()

in there and that should break into the debugger. You might need to launch gedit from a command prompt instead of the GUI so that it has a terminal for pdb to run in.

link|improve this answer
Thank you! Now I need to learn how to use PDB! :D – thom May 7 '11 at 15:18
feedback

AFAIK you can't really use gedit for python debug but you can try WINPDB http://winpdb.org/ which can be used in parallel with gEdit

link|improve this answer
To whom that gave a downvote to my answer, what is the problem, care to explain? – cherhan May 21 '11 at 14:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.