Remote debugging of multithreaded Python applications

How can I remotely debug a multi-threaded Python application running on an Embedded Linux system from Windows XP or Vista?

So far, I've come across PyScripter remote debugging . How it works?

+1


source to share


1 answer


I've never used it, other than a few quick test runs, but winpdb sounds like it does exactly what you want:



Winpdb is a GPL platform independent Python debugger with support for multiple threads, namespace modification, inline debugging, encrypted communication and depends on 20 times faster than pdb.

+1


source







All Articles