Files
openide/python/testData/refactoring/rename/renameMethodDefinitionDeclaredInPyi/before/a.py
andrey.matveev 62fa782cbf PY-21938 Fix renaming method declared in psi stub
(cherry picked from commit 9dd1de942ff78e9af66e54b69b397115057cc718)

IJ-MR-10920

GitOrigin-RevId: ac2b5d214ab1613cd2d954b12c03e594efe69b50
2021-06-29 18:28:23 +00:00

11 lines
238 B
Python

class TestClass(object):
def __someMethod(self):
self.someOtherMethod()
def some<caret>OtherMethod(self):
# Try a rename refactor operation on this
# method, the above call to the method is
# not renamed.
return