Files
openide/python/testData/inspections/PyGlobalUndefinedInspection/severalGlobals.py
Aleksei Kniazev aaf91c7e4b IDEA-CR-51205: undefined global inspection now works for all mentions of global var in the file (PY-37623)
GitOrigin-RevId: 5be5b5da4663555f24f9dfb88dde9c9ef68808db
2019-08-29 13:27:53 +00:00

8 lines
261 B
Python

def foo():
global <weak_warning descr="Global variable 'var' is undefined at the module level">var</weak_warning>
var = 1
def bar():
global <weak_warning descr="Global variable 'var' is undefined at the module level">var</weak_warning>
var = 2