Miki Tebeka wrote:
So the question is: Is there suitable library for simple python gui
debugger, or may be there are some other techniques for debugging
embedded scripts?
What I usually do is add
from pdb import set_trace
in the embedded module somewhere and then add a call to set_trace
(brea
Hello Andrey,
> So the question is: Is there suitable library for simple python gui
> debugger, or may be there are some other techniques for debugging
> embedded scripts?
What I usually do is add
from pdb import set_trace
in the embedded module somewhere and then add a call to set_trace
(br
Hi all.
I have custom resource editor and wish python to be scripting language
in it. But I don't want to lose ability of debugging which I currently
have implementing all logic in C++.
So the question is: Is there suitable library for simple python gui
debugger, or may be there are some other