Remote vanilla PDB (over TCP sockets).
Project description
docs |
|
|---|---|
tests |
|
package |
Remote vanilla PDB (over TCP sockets) done right: no extras, proper handling around connection failures and CI. Based on pdbx.
Free software: BSD license
Usage
To open a remote PDB on first available port:
from remote_pdb import set_trace
set_trace() # you'll see the port number in the logs
To use some specific host/port:
from remote_pdb import RemotePdb
RemotePdb('127.0.0.1', 4444).set_trace()
To connect just run telnet 127.0.0.1 4444. When you are finished debugging, either exit the debugger, or press Control-], then Control-d.
Alternately, one can connect with NetCat: nc -C 127.0.0.1 4444 or Socat: socat socat readline tcp:127.0.0.1:4444 (for line editing and history support). When finished debugging, either exit the debugger, or press Control-c.
Requirements
Python 2.6, 2.7, 3.2, 3.3 and PyPy are supported.
Similar projects
Changelog
1.2.0 (2015-09-26)
Always print/log listening address.
1.1.3 (2015-07-06)
Corrected the default frame tracing starts from.
1.1.2 (2015-07-06)
Small readme update.
1.1.1 (2015-07-06)
Remove bogus remote_pdb console script.
1.1.0 (2015-06-21)
Fixed buffering issues when running on Python 3 and Windows.
1.0.0 (2015-06-15)
Added support for PDB++.
0.2.1 (2014-03-07)
First release on PyPI.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file remote-pdb-1.2.0.tar.gz.
File metadata
- Download URL: remote-pdb-1.2.0.tar.gz
- Upload date:
- Size: 13.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61ae364de25d1dd2bd03643309b20db79c1b8e4da42068840e030f9e69655101
|
|
| MD5 |
0bc5817d403fa62d56ef874bfc5d11b3
|
|
| BLAKE2b-256 |
96c4a05b197c7c0be80023228b45f33d0d0ac6669e382bfe52204dfdc624bb0e
|
File details
Details for the file remote_pdb-1.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: remote_pdb-1.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
665cc74e033fe7c65ff40a1d28e6b3b7def7f1fb9947500ac5b44badfb1b2562
|
|
| MD5 |
41e751310e6c89c7a5519f7684649daa
|
|
| BLAKE2b-256 |
23c54e1c194bf967146822aed1153ee30baf28a53586190c78c0be7f92e17ccf
|