Files
openide/python/testData/refactoring/makeFunctionTopLevel/methodSingleAttributeRead.after.py

11 lines
113 B
Python

class C:
def __init__(self):
self.foo = 42
def method(foo, x):
print(foo)
method(C().foo, 1)