Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
resolve
/
SuperMetaClass.py
blob: cb58231a416fab21ff1d44b8f6a4468d7f9af515 [
file
] [
log
] [
blame
]
__metaclass__
=
type
class
A
:
def
foo
(
self
):
print
"foo"
class
B
(
A
):
def
foo
(
self
):
super
(
B
,
self
).
foo
()
# <ref>
B
().
foo
()