Statistics
| Revision:

gvsig-scripting / org.gvsig.scripting / trunk / org.gvsig.scripting / org.gvsig.scripting.app / org.gvsig.scripting.app.mainplugin / src / main / resources-plugin / scripting / lib / pylint / test / regrtest_data / classdoc_usage.py @ 745

History | View | Annotate | Download (268 Bytes)

1
"""ds"""
2

    
3
__revision__ = None
4

    
5
class SomeClass(object):
6
    """cds"""
7
    doc = __doc__
8

    
9
    def __init__(self):
10
        """only to make pylint happier"""
11

    
12
    def please(self):
13
        """public method 1/2"""
14

    
15
    def besilent(self):
16
        """public method 2/2"""
17