mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
11 lines
201 B
Python
11 lines
201 B
Python
def bar(base_new, self_new):
|
|
try:
|
|
base_new.__init__(self_new)
|
|
except AttributeError:
|
|
pass
|
|
|
|
|
|
def __init__(self):
|
|
for base in self__class__.__bases__:
|
|
bar(base, self)
|