mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
I updated test data accordingly and removed now obsolete tests about skipping preceding comments.
11 lines
201 B
Python
11 lines
201 B
Python
def __init__(self):
|
|
for base in self__class__.__bases__:
|
|
bar(base, self)
|
|
|
|
|
|
def bar(base_new, self_new):
|
|
try:
|
|
base_new.__init__(self_new)
|
|
except AttributeError:
|
|
pass
|