up vote 3 down vote favorite
1
share [g+] share [fb]

Is there any other way to debug swig extensions except for doing

gdb python stuff.py

?

I have wrapped the legacy library libkdtree++ and followed all the swig related memory managemant points (borrowed ref vs. own ref, etc.). But still, I am not sure whether my binding is not eating up memory. It would be helpful to be able to just debug step by step each publicized function: starting from Python then going to via the C glue binding into C space, and returning back.

Is there already such a possibility?

Thanks,

wr

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Well, for debugging, you use a debugger ;-).

When debugging, it may be a good idea to configure Python with '--with-pydebug' and recompile. It does additional checks then.

If you are looking for memory leaks, there is a simple way:

Run your code over and over in a loop, and look for Python's memory consumption.

link|improve this answer
What I meant is: is there a debugger that supports that switching of language boundaries? Like, pdb switches to gdb when entering the swig part. – wr. May 6 '09 at 15:29
1  
Not that I know of. – theller May 6 '09 at 16:05
feedback

gdb 7.0 supports python scripting. It might help you in this particular case.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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