mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 11:50:57 +07:00
9 lines
132 B
Python
9 lines
132 B
Python
class Parent(object):
|
|
def __init__(self):
|
|
self.foo = 12
|
|
|
|
|
|
class Child(Parent):
|
|
def foo(self):
|
|
self.foo = 12
|