pudb
pudb copied to clipboard
pudb crashes with escape character message when debugging via telnet.
I was working on a npyscreen app, and thought I would give pudb's remote debugging a try. The telnet prompt comes up, and when I connect via telnet from a separate console, I see the pudb screen. But if I press "n", the screen disappears and I get dumped onto a frozen telnet screen saying "Escape character is '^]'."
I don't know if I am doing something wrong, have some kind of terminal incompatibility (I'm running the standard Terminal in XFCE on Debian Stretch), or something else.
Movie attached that shows what it looks like. The triggering event is pressing "n" in pudb.
I'm unable to reproduce the issue. If you add this line to the debug_me.py test script and run it, does the issue still occur?
from pudb.remote import set_trace; set_trace()