Files
openide/python/testData/refactoring/changeSignature/classMethod.before.py
Mikhail Golubev b044c8811a PY-33487 PY-30874 Properly account implicit arguments in Change Signature
Instead of just relying on the fact that some of parameters is named "self".

GitOrigin-RevId: c9c0d1d4bbcecb93a84a3dc451485fa70790ca6d
2020-04-17 12:46:38 +00:00

8 lines
127 B
Python

class SomeClass:
@classmethod
def f<caret>oo(cls, arg1, arg2):
pass
SomeClass.foo(1, 2)
SomeClass().foo(1, 2)