-
-
Notifications
You must be signed in to change notification settings - Fork 32k
list comprehensions don't see local variables in pdb in python3 #65360
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Using generators in pdb are very handy but since Python3 they don't work properly. For example: import pdb
def foo():
items = [1, 2, 3]
limit = 5
pdb.set_trace()
foo() in pdb prompt the following fails: (pdf) all(x < limit for x in items) I can express that in a lambda expression (i.e. pass items as an argument) but this seems unnecessary and very inelegant. |
Your failure appears to be not pasted from an interpreter session; the actual failure is: (Pdb) all(x < limit for x in items) (i.e. "limit" is not found, not "items"). This actually does not work in Python 2 either. What did work in Python 2 and doesn't work in 3, is using a list comprehension like all([x < limit for x in items]) This is because list comprehensions are now implemented with their own function object like generator expressions have always been. To make the code in pdb compile "as if" it was put in the debugged function will be as good as impossible, so I'm closing this as won't fix. |
Just ran into this problem and it's sooooo uncomfortable As a workaround, you can use a trick similar to this one [l'r' for l in (locals(),) for x in l['some_local']] assuming 'r' & 'some_local' are two local variables in Ugly, but at least it can be made/forced to work if needed... Best regards, |
FWIW this generator expression can be evaluated with the 'interact' command: --Return--
> /test/comprehension.py(5)foo()->None
-> pdb.set_trace()
(Pdb) interact
*interactive*
>>> all(x < limit for x in items)
True
>>>
(Pdb) |
The runcode() method of InteractiveInterpreter in code.py uses the 'self.locals' dictionary as the 'globals' parameter of the invoked exec() function. And the do_interact() method of Pdb instantiates InteractiveInterpreter with 'locals' as a merge of the current frame's locals and globals dictionary. This explains why the interact command of pdb evaluates sucessfully the generator expression: the generator function object is evaluated by the interpreter in a frame where 'locals' is NULL (see fast_function() in ceval.c) and 'globals' includes now the debugged frame locals dictionary. So a fix for this problem is to have the default() method of pdb be implemented in the same manner as do_interact() and the runcode() method of InteractiveInterpreter. The attached patch does this. |
Thanks for looking into this Xavier. Could someone reopen this issue so it can gets looked at again? |
The NameError exception occuring on a generator expression referencing a local variable when the generator is called within exec() is the object of multiple entries in the bug tracker, see bpo-13557. msg 149096 in this issue suggests using exec(code, locals()) to fix the problem. It seems that what does currently the do_interact() method, and what is proposed in the patch is the recommended practice to handle this problem. |
Interestingly, the interact command was added at changeset: $ hg log -v --pager cat -r $(hg blame Lib/pdb.py | grep do_interact | awk -F : '{print $1}')
changeset: 66691:c2578a68879d
user: Georg Brandl <georg@python.org>
date: Sat Dec 04 11:20:26 2010 +0000
files: Doc/library/pdb.rst Lib/pdb.py Misc/NEWS
description:
Add the "interact" pdb command from pdb++. And the included documentation, added at that time, states (emphasis added by me): I can provide a test case for the patch when this issue is re-opened, unless someone else is willing to do it. |
The patch fails to invoke exec() with the locals argument set to the current frame locals. |
Georg, please consider re-opening. |
will this be fixed at any point? its really a nuisance when debugging |
This came up in https://discuss.python.org/t/inlining-comprehensions-what-are-the-compatibility-constraints/22527/25 Reopening. |
#101441 (PEP 709) will fix this for list, dict, and set comprehensions, but not for generator expressions. |
Fixed by #111094 |
Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.
Show more details
GitHub fields:
bugs.python.org fields:
The text was updated successfully, but these errors were encountered: