mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 12:14:37 +07:00
11 lines
144 B
Python
11 lines
144 B
Python
class A(object):
|
|
def foo(self):
|
|
print "foo"
|
|
|
|
class B(A):
|
|
def foo(self):
|
|
super().foo()
|
|
# <ref>
|
|
|
|
B().foo()
|