blob: efcecd34b78b5b67c47958ba2d1d9b0b981ab273 [file] [log] [blame]
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