mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 23:39:57 +07:00
7 lines
137 B
Python
7 lines
137 B
Python
def myhiddenfunc():
|
|
return "ok"
|
|
|
|
def __getattr__(name):
|
|
if name == "myfunc":
|
|
return myhiddenfunc
|
|
raise AttributeError |