Files
openide/python/testData/highlighting/variableAnnotatedWithNonLocalNotHighlightedAsLocal.py
Daniil Kalinin 8df7dd2f21 PY-32302 Provide custom syntax highlighting for Python local variables
GitOrigin-RevId: af7099a6ba948c740c8183674b24eeeddf164e70
2023-05-18 19:12:18 +00:00

7 lines
217 B
Python

def <info descr="PY.FUNC_DEFINITION">outer</info>():
x = "John"
def <info descr="PY.NESTED_FUNC_DEFINITION">inner</info>():
nonlocal x
x = "hello"
<info descr="PY.FUNCTION_CALL">inner</info>()
return x