third_party.pylibs.pylint.src/tests/regrtest_data/classdoc_usage.py
2019-06-20 10:02:14 +02:00

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"""