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

6 lines
116 B
Python

class C:
def __init__(self):
self.__attr = True
def me<caret>thod(self):
print(self.__attr)