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 module dosn't work on Windows, because it use some special code from linux. It must be written in system requements.

When inside the internal shell the cursor-up key just selects the lines in history with no (apparent) useful function. It would be nice if it could instead access the history...

Environment: - Python 2.7 - Linux x64 Stack trace: ``` ... File "/home/wookayin/.local/lib/python2.7/site-packages/pudb/debugger.py", line 360, in user_call self.interaction(frame) File "/home/wookayin/.local/lib/python2.7/site-packages/pudb/debugger.py", line 349, in interaction show_exc_dialog=show_exc_dialog) File "/home/wookayin/.local/lib/python2.7/site-packages/pudb/debugger.py", line 2089, in...

Have there been any thoughts on adding a plugin system for domain specific debugger addons? Is this out of scope?

To reproduce: First case: 1. Load up a file 2. Open the module menu(_m_) 3. Choose file/module that you're running 4. Choose "OK" Second case(eligible after first): 1. Open the...

When I modified the program using my editor, how to 1. kill the running program 2. reload the whole program 3. pause the program like I just start it (do...

enhancement

I'm debugging a Python 3 script, which I typically invoke from the directory it lives in, as: > ./fooBar.py parm1 If I instrument my script with a `set_trace()` call and...

Output for Python 3.7.3, Python2.7.16, Python3 in pudb 2019.2: ``` >>> u'\xf6' == u'ö' True ``` Output for Python 2.7.16 (and 2.7.15) in pudb 2019.2 ``` >>> u'\xf6' == u'ö'...

Env: - SecureCRT 7.2.3 (work on local host) - Python 3.6 - Ubuntu 18.04 (remote Linux) - Windows 10 (local host) ``` # -*- coding: utf-8 -*- from multiprocessing import...

In the IPython shell, you can't seem to access names from within list comprehensions: ``` py In [16]: a = 1 In [17]: [a for i in range(10)] --------------------------------------------------------------------------- NameError...

Bug