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