Files
openide/python/testData/highlighting/variableAnnotatedWithGlobalNotHighlightedAsLocal.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

5 lines
135 B
Python

def <info descr="PY.FUNC_DEFINITION">foo</info>():
global g
g = "world!"
<info descr="PY.BUILTIN_NAME">print</info>("Hello, " + g)