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