Files
openide/python/testData/refactoring/makeFunctionTopLevel/localFunctionNonlocalReferenceToOuterScope.py

8 lines
129 B
Python

def func():
x = True
def loc<caret>al():
def nested():
nonlocal x
x = False