Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
override
/
innerClass_after.py
blob: 5c49802d18bb2ea2ea2539a9efc22ffa1a567f38 [
file
] [
log
] [
blame
]
class
X
(
object
):
def
foo
(
self
):
pass
class
A
:
class
Inner
(
X
):
def
foo
(
self
):
<
selection
>
super
(
A
.
Inner
,
self
).
foo
()</
selection
>
def
doStuff
(
self
,
foo
=
True
):
pass
class
B
(
A
):
def
otherMethod
(
self
,
foo
,
bar
):
print
foo
,
bar