mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
9 lines
172 B
Python
9 lines
172 B
Python
class A:
|
|
def __init__(self, first=True):
|
|
pass
|
|
|
|
class B(A):
|
|
def __init__(self, *args, **kwargs):
|
|
super(B, self).__init__(*args, **kwargs)
|
|
|
|
b = B(first=) |