Files

17 lines
254 B
Python

class Test(object):
"""
@cvar some: some variable
@type some: C{str}
"""
some = 'hello'
def __init__(self):
self.some1 = 10
def q(self, another):
"""
@param another: another variable
@type another: C{str}
"""
pass