mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
11 lines
185 B
Python
11 lines
185 B
Python
class A(object):
|
|
def foo(self):
|
|
print "foo"
|
|
|
|
class B(A):
|
|
def foo(self):
|
|
super(self.__class__, self).foo()
|
|
# <ref>
|
|
|
|
B().foo()
|