mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-01 07:11:30 +07:00
10 lines
144 B
Python
10 lines
144 B
Python
__author__ = 'ktisha'
|
|
|
|
class Base(object):
|
|
def __init__(self):
|
|
self.my = 1
|
|
|
|
|
|
class Child(Base):
|
|
def f(self):
|
|
self.my = 1 |