Files
openide/python/testData/override/staticMethodPy3k.py
Mikhail Golubev bd1ab5f421 PY-15629 Always explicitly pass first argument in "__new__" method of the base class
Additionally return statement is always added in these methods as well.
2015-04-20 18:57:40 +03:00

8 lines
86 B
Python

class A:
@staticmethod
def m(x, y):
pass
class B(A):
<caret>pass