Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
resolve
/
Super.py
blob: cf46df14c2dd49271c23e5ed162221194336b65c [
file
] [
log
] [
blame
]
class
A
(
object
):
def
foo
(
self
):
print
"foo"
class
B
(
A
):
def
foo
(
self
):
super
(
B
,
self
).
f
<
ref
>
oo
()
B
().
foo
()