ripdb icon indicating copy to clipboard operation
ripdb copied to clipboard

Remotely accessible IPython-enabled debugger

Results 3 ripdb issues
Sort by recently updated
recently updated
newest added

Hello, Instead of: ``` def set_trace(addr="127.0.0.1", port=4444): ``` It would be nice to have: ``` set_trace(addr=None, port=None): if addr is None: addr = os.environ.get('REMOTE_RIPDB_HOST', '127.0.0.1') if port is None: port...

I am trying to debug a celery task (specifically the `__call__` that calls a celery task), and when I add ``` import ripdb ripdb.set_trace() ``` And I get the normal:...

Disconnecting from the debugger (eg: closing `nc`) will just leave the debugged application frozen (and I can't connect back!). This is probably a result of never `continue`'ing the execution, but...