Files
openide/python/testData/quickFixes/PyAddMethodQuickFixTest/addMethodFromMethod_after.py
Mikhail Golubev 532e18e4d9 Add "Py" prefix to AddImportQuickFixTest and several other quick fix tests
otherwise it's easy to overlook it especially considering that there is
also (confusingly) PyAddImportTest
2017-03-21 18:10:12 +03:00

16 lines
173 B
Python

class A:
def __init__(self):
self.x = 1
def foo(self, a):
self.y(1, a)
def y(self, param, a):
pass
# Some comment
class B:
pass