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