third_party.pylibs.pylint.src/test/input/func_noerror_classes_meth_signature.py
2007-02-19 10:40:05 +01:00

13 lines
286 B
Python

# pylint: disable-msg=C0111,R0922,R0903
"""#2485
W0222 "Signature differs from overriden method" false positive
"""
__revision__ = 1
class Super(object):
def method(self, param):
raise NotImplementedError
class Sub(Super):
def method(self, param = 'abc'):
pass