Files
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
120 B
Python

class SomeClass:
@classmethod
def foo(cls, arg2, arg1):
pass
SomeClass.foo(2, 1)
SomeClass().foo(2, 1)