mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 22:09:38 +07:00
10 lines
133 B
Python
10 lines
133 B
Python
class A(object):
|
|
def foo(self):
|
|
print "foo"
|
|
|
|
class B(A):
|
|
def foo(self):
|
|
super(B, self).f<ref>oo()
|
|
|
|
B().foo()
|