Files
openide/python/testData/resolve/NonlocalInPresenceOfGlobalInNestedFunction.py
Petrandintellij-monorepo-bot 7f51ea7313 PY-82115 Incorrect resolve of nonlocal and global variables
GitOrigin-RevId: c51517699fe512c22687282ed8d46ffe56e22ac1
2025-06-23 14:59:09 +00:00

9 lines
161 B
Python

def outer1():
s = "aba"
def outer2():
def inner1():
nonlocal s
# <ref>
def inner2():
global s