pudb icon indicating copy to clipboard operation
pudb copied to clipboard

Full-screen console debugger for Python

Results 125 pudb issues
Sort by recently updated
recently updated
newest added

Configuring the color theme with 256 index color is quite painful.

See discussion in #549. PRs welcome. cc @presto-dev

Bug

**Is your feature request related to a problem? Please describe.** A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] In some window (e.g,...

enhancement

**Describe the bug** When sys.argv be changed, pudb3 cannot enter REPL **To Reproduce** test.py ```python import sys argv = sys.argv sys.argv = [] print(1) print(2) print(3) sys.argv = argv print(4)...

Bug

How can I hide the header? ![image](https://user-images.githubusercontent.com/53520949/185631880-0059579d-7cf9-42fe-ae43-c97937912181.png)

enhancement

Hi, I met “I/O operation on closed file” when try with "Debugging from a separate terminal" at https://documen.tician.de/pudb/starting.html#debugging-from-a-separate-terminal. I'm using conda with below versions: ``` $ python --version Python 3.9.7...

Bug

It's useful to be able to restart debugging session quickly without using `q` command and selecting `` from the UI. It also remove the need to have `Prompt before quitting`...

Diverting the debugger interface to a diffent tty by setting the PUDB_TTY environment variable does not work. Simply try: `touch any-script.py; PUDB_TTY=$(tty) python -mpudb any-script.py` This results in a `ValueError:...

Bug

It would be useful to have some way to run to a given line but only within the same stack frame as the currently visible one. The reason is that...

enhancement

Hi! (Love pudb, been using it for a long time now). This is a feature request that just came up for a way to blacklist modules when `next`ing. The reason...

enhancement