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

__revision__ = None

class SomeClass:
    """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"""