mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
10 lines
158 B
Python
10 lines
158 B
Python
class Parent:
|
|
def __init__(self):
|
|
self.instance_field = "eggs"
|
|
|
|
|
|
class Child(Parent):
|
|
def __init__(self):
|
|
Parent2.__init__(self)
|
|
|