mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
(cherry picked from commit 9dd1de942ff78e9af66e54b69b397115057cc718) IJ-MR-10920 GitOrigin-RevId: ac2b5d214ab1613cd2d954b12c03e594efe69b50
11 lines
238 B
Python
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
|