mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
10 lines
154 B
Python
10 lines
154 B
Python
class Parent:
|
|
def __init__(self):
|
|
self.instance_field = "eggs"
|
|
|
|
|
|
class Child(Parent):
|
|
def __init__(self):
|
|
Parent2.__init__(self)
|
|
|