inducer / pudb

Full-screen console debugger for Python
https://documen.tician.de/pudb/
Other
2.94k stars 226 forks source link

Remove dependence on telnetlib which was removed from Python 3.13 #626

Closed wshanks closed 8 months ago

wshanks commented 8 months ago

Only some constant values were being used so those values were copied into remote.py instead of being referenced from telnetlib.

Closes #621

wshanks commented 8 months ago

I force pushed to fix some flake8 issues. I had copied the code from telnetlib exactly and it didn't follow flake8 (only one space for comments and put extra spaces to align the = of assignments).

inducer commented 8 months ago

Thanks!