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

7 lines
116 B
Python

def func():
x = True
class C:
def me<caret>thod(self):
nonlocal x
x = False