mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-09 23:34:45 +08:00
Fix some usage cases of comprehensions.
This commit is contained in:
@@ -17,8 +17,9 @@ tuple(a + 3 for a in [''])
|
||||
# Some variables within are not defined
|
||||
# ----------
|
||||
|
||||
abcdef = None
|
||||
#! 12 name-error
|
||||
[1 for a in NOT_DEFINFED for b in a if 1]
|
||||
[1 for a in NOT_DEFINFED for b in abcdef if 1]
|
||||
|
||||
#! 25 name-error
|
||||
[1 for a in [1] for b in NOT_DEFINED if 1]
|
||||
|
||||
Reference in New Issue
Block a user