Files
openide/python/testData/inspections/AddGlobalStatement.py

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()