6ce4277551
This is necessary to catch all cases where locals are referenced before assignment. We still keep the _0, _1, _2 versions of LOAD_FAST to help reduced the byte code size in RAM. Addresses issue #457.
20 lines
242 B
Python
20 lines
242 B
Python
# locals referenced before assignment
|
|
|
|
def f1():
|
|
print(x)
|
|
x = 1
|
|
|
|
def f2():
|
|
for i in range(0):
|
|
print(i)
|
|
print(i)
|
|
|
|
def check(f):
|
|
try:
|
|
f()
|
|
except NameError:
|
|
print("NameError")
|
|
|
|
check(f1)
|
|
check(f2)
|