Files
openide/python/testData/override/staticMethodPy3k_after.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

10 lines
152 B
Python

class A:
@staticmethod
def m(x, y):
pass
class B(A):
@staticmethod
def m(x, y):
<selection>super().m(x, y)</selection>