| Tor Norbye | 3a2425a | 2013-11-04 10:16:08 -0800 | [diff] [blame^] | 1 | class 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 | ||||