mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
9 lines
112 B
Python
9 lines
112 B
Python
class Foo:
|
|
def moo(self, a, b, c):
|
|
pass
|
|
|
|
foo = Foo()
|
|
qoo = foo
|
|
|
|
qoo.moo(<arg1>1, <arg2>2, <arg3>"bamboo")
|