mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-29 18:17:08 +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
|
|
|