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

Suddenly hitting this exception: `AttributeError: 'CaptureManager' object has no attribute 'suspendcapture'` when trying to set a breakpoint with `import pudb; pudb.set_trace()`, although exactly the same result with `from pudb import...

I'm trying to use `pudb` for OpenStack (Cinder). Inserting the `import pudb; pudb.set_trace()` snippet doesn't work; I only get ``` /usr/lib/python2.7/dist-packages/pudb/__init__.py:192: UserWarning: A non-default handler for signal 2 is already...

Looking into the settings I didn't find a way to increase the height of the command line window by using setting a weight modifier, something similar to the 'sidebar_width' setting...

For instance, if you run ``` a = 1 ``` and ``` def test(): print(a) test() ``` in the IPython shell, it gives `NameError: name 'a' is not defined`. The...

This would be super hard to implement, but I'm putting it here in the hopes that someone will do it, or maybe point out an easy way to do it....

enhancement

This is really a corner case but still annoying. Normally, I'm not interested in marked breakpoints and thus I collapse the Breakpoints widget to zero (using `[` key) to arrange...

Is it possible to plug in another REPL (such as the `ptipython` I love so dearly) into the ctrl-x shell? The autocomplete it would offer is very handy.

Apparently pycharm lets you make a breakpoint fire only after another breakpoint has fired. It could be a useful feature to add to PuDB.

Don't know if this should really be an urwid bug. If I control-z (suspend) in pudb, it prints the prompt below the PuDB UI. Inserting text works, but the cursor...

I'm new to pudb so please forgive noob errors. Immediately on starting pudb , the 'm' key does show a list of modules, however none of mine are present. (presumably...