mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 16:02:32 +07:00
10 lines
78 B
Python
10 lines
78 B
Python
class C:
|
|
def f(self):
|
|
pass
|
|
|
|
__call__ = f
|
|
|
|
|
|
c = C()
|
|
c() # pass
|