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

This PR introduces a new contrib folder under pudb for community customization. A stringifier for pytorch is included. Related issue: #475 Detailed changelog: * A module was added under pudb/contrib/stringifiers...

Hi, First of all thank you for this awesome project. I have created a stringifier for integrating [pudb + pytorch](https://github.com/georgepar/pudb-torch) to debug ML code, and I am wondering if there...

Hi, I am wondering if it is possible to automatically start running the program when calling PUDB by -m option of python, just like in PDB.

When I don't know which file I am looking at, I use "L" to see the file name. Pudb could display the name in the title of the source pane.

Sorry if there is already a way to do this, I didn't see it. If you are stepping through the debugger and an exception is thrown, you the debugger catches...

Bug

Currently, the full path of the current source file will be displayed. This usually results in long path. When the path can't be displayed fully in 1 row for whatever...

Currently, only the title changes color. In the image below, it's hard to tell right away that the `Variables` window is active. Other tools don't have this problem because they...

Currently, `Debugger.stack` will be empty when entering post-mortem, leading to `IndexError` when user tries to expand variables in the Variables window. This commit fixes that by restoring `Debugger.bottom_frame` to `Debugger.stack`....

The "L" dialog and the "?" help dialog should close if you press the "Esc" key.

Crashes on certain repeatable sequence of actions. Steps to reproduce: 1. load http://ideone.com/DVs5cv 2. start pudb (pudb3 script.py) 3. Run till the end (repeated n, then examine post-mortem mode) 4....