blob: efcecd34b78b5b67c47958ba2d1d9b0b981ab273 [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001class Test(object):
2 """
3 @cvar some: some variable
4 @type some: C{str}
5 """
6 some = 'hello'
7
8 def __init__(self):
9 self.some1 = 10
10
11
12 def q(self, another):
13 """
14 @param another: another variable
15 @type another: C{str}
16 """
17 pass