Winpdb 1.4.2 Tychod Released
Winpdb 1.4.2 Tychod is available for download at http://winpdb.org/download. The new version is compatible with Python 3.0 rc2. GNU/Linux users, please use the source package. Windows users with Python 2.6 or later, please read the instructions in the download page.
Winpdb - A Platform Independent Python Debugger
two questions:
Is there any way to invoke winpdb remotely via tramp/emacs (local winpdb display instance) ?
is there any way to automate the password entry on the remote winpdb invocation and automate the attachment to that remote winpdb instance? it’s getting really old typing a password and then doing the file-> Attach dialog thing every minute or two.
For auto-typing the password, you can have another program echo it in for you. The unix program “yes” does this very well.
I have a shell script that does something like:
(yes mypassword | rpdb -d myprogram.py ) &
sleep 1
(yes mypassword | winpdb -a myprogram.py )
Hope that helps.