pdbp (Pdb+)
pdbp (Pdb+) is a drop-in replacement for pdb and (unmaintained) pdbpp (Pdb++).
This fixes pdbpp (pdb++) to work in all environments. Sticky pdbpp mode is the default option.
To replace pdb with it, add import pdbp to an __init__.py file. In case that doesn't work, you can just load all of pdbp into pdb:
import pdb
import pdbp
for key in pdbp.__dict__.keys():
pdb.__dict__[key] = pdbp.__dict__[key]
If you need to customize pdbp options:
if hasattr(pdb, "DefaultConfig"):
pdb.DefaultConfig.filename_color = pdb.Color.blue
pdb.DefaultConfig.line_number_color = pdb.Color.turquoise
pdb.DefaultConfig.show_hidden_frames_count = False
pdb.DefaultConfig.disable_pytest_capturing = True
pdb.DefaultConfig.enable_hidden_frames = False
pdb.DefaultConfig.truncate_long_lines = True
pdb.DefaultConfig.sticky_by_default = True
Release files for pdbp 0.1.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pdbp-0.1.0.tar.gz | 14.0 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pdbp-0.1.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size:26.6 kB
Release files / pdbp-0.1.0.tar.gz
| Download URL | pdbp-0.1.0.tar.gz |
|---|---|
| Size | 14.0 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5b4741e0fe79c33901ba07542549aa5ccdc3203823774ff61609cc8729159593
|
|
BLAKE2b-256 checksum How to use checksums |
f7fa620550fb00719a0db585762348d2168df1b05abeff601fadf60ee960b2ea
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.11.0
|
Release files / pdbp-0.1.0-py3-none-any.whl
| Download URL | pdbp-0.1.0-py3-none-any.whl |
|---|---|
| Size | 12.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
c9d94ba0b90ae4055a63288f0bc59f2ffefaac77e1aa2e07edbb7cb1f31a4f40
|
|
BLAKE2b-256 checksum How to use checksums |
7379b70153edee1313e38e81337119a77b6d36ebc2fbf672fbc1be7d43849692
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.1 CPython/3.11.0
|