mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-19 04:51:24 +07:00
9 lines
145 B
Python
9 lines
145 B
Python
class A:
|
|
def __init__(self, x):
|
|
self.x = x
|
|
|
|
|
|
class B(A):
|
|
def __init__(this, y, x):
|
|
A.__init__(this, x)
|
|
this.y = y |