mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 09:04:15 +07:00
9 lines
107 B
Python
9 lines
107 B
Python
class B: pass
|
|
|
|
class A(object, B):
|
|
__slots__ = ""
|
|
|
|
def __getattribute__(self, item):
|
|
pass
|
|
|