third_party.pylibs.pylint.src/pylint/test/regrtest_data/classdoc_usage.py
ssolanki 5673ffe2d8 adapt existing test cases for useless-object-inheritance.
adapt existing test/input test cases to new check.

add some more positive test case for useless-object-inheritance

msg code was in conflict with existing msg.

adapt existing test cases for new checker.
2018-06-21 11:17:27 +05:30

18 lines
312 B
Python

"""ds"""
__revision__ = None
# pylint: disable=useless-object-inheritance
class SomeClass(object):
"""cds"""
doc = __doc__
def __init__(self):
"""only to make pylint happier"""
def please(self):
"""public method 1/2"""
def besilent(self):
"""public method 2/2"""