mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 01:53:51 +07:00
17 lines
254 B
Python
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 |