Files
openide/python/testData/inspections/AddGlobalStatement.py
2011-01-31 15:26:50 +01:00

9 lines
150 B
Python

a = 1
def foo():
print <caret><warning descr="Local variable 'a' might be referenced before assignment">a</warning>
a = 2
print a
foo()