mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
12 lines
105 B
Python
12 lines
105 B
Python
class A(object):
|
|
def foo(self, a, b):
|
|
pass
|
|
|
|
moo = foo
|
|
|
|
ff = A().moo
|
|
|
|
f = ff
|
|
|
|
f(<arg1>1, <arg2>2)
|