mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-25 18:25:37 +07:00
14 lines
205 B
Python
14 lines
205 B
Python
__author__ = 'ktisha'
|
|
|
|
class Base:
|
|
def __init__(self):
|
|
self.param = 2
|
|
|
|
class Child(Base):
|
|
def __init__(self):
|
|
Base.__init__(self)
|
|
self.my = 2
|
|
|
|
def f(self):
|
|
pass
|