You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
242 B
20 lines
242 B
11 years ago
|
# 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)
|