python-remote-pdb icon indicating copy to clipboard operation
python-remote-pdb copied to clipboard

Remote vanilla PDB (over TCP sockets).

Results 9 python-remote-pdb issues
Sort by recently updated
recently updated
newest added

use case: ``` >>> import remote_pdb as rpdb >>> rpdb.set_trace('./t.sock') >>> rpdb.set_trace('t.sock', unixsocket=True) >>> rpdb.set_trace(unixsocket='t.sock') ``` invalid: ``` >>> import remote_pdb as rpdb >>> rpdb.set_trace('t.sock') socket.gaierror: [Errno -2] Name or...

I want to break the execution of the script by sending SIGINT. Something like typing Ctrl-C or Ctrl-] send brk do not work.

> When invoked as a script, pdb will automatically enter post-mortem debugging if the program being debugged exits abnormally. After post-mortem debugging (or after normal exit of the program), pdb...

For some reason, the `interact` pdb mode is displayed on a process tty (not in a telnet session) and exits immediately. Here is a demo: ![2024-01-08 00 26 16](https://github.com/ionelmc/python-remote-pdb/assets/370942/28a654e2-e4c8-4513-a196-c3bc7f04f3e2) Is...

It would be useful to have a `post_mortem` function like `pdb` has. This would allow calling `remote_pdb` right after an exception is raise (if it's raised). Like this: ```python try:...

Hi Ionel, Thanks so much for making pyremotepdb, I use it as an alternate to GUI debuggers as I usually need to debug other processes over the network. I was...