mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
8 lines
108 B
Python
8 lines
108 B
Python
class C(object):
|
|
def f(self, name):
|
|
return name
|
|
|
|
__getattr__ = f
|
|
|
|
c = C()
|
|
print(c.foo) #pass |