summaryrefslogtreecommitdiff
path: root/pylint/test/regrtest_data/classdoc_usage.py
blob: 7c30f7e95b674e3cb168c55b8ae27e079963ac74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
"""ds"""

__revision__ = None

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