1
0
forked from VimPlug/jedi

don't raise attribute NameErrors in all for loop name definitions.

This commit is contained in:
Dave Halter
2014-05-15 12:39:00 +02:00
parent bcab821df9
commit 857a9b7621
2 changed files with 9 additions and 1 deletions

View File

@@ -43,3 +43,10 @@ c.something = None
#! name-error
something = a
something
# should not raise anything.
for loop_variable in [1, 2]:
#! name-error
x = undefined
loop_variable