Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
override
/
simple_after.py
blob: bbd008e18816b5bf343da8abf4bcaecd9a60f7bf [
file
] [
log
] [
blame
]
class
A
:
def
doStuff
(
self
,
foo
=
True
):
pass
class
B
(
A
):
def
doStuff
(
self
,
foo
=
True
):
<
selection
>
A
.
doStuff
(
self
,
foo
)</
selection
>
def
otherMethod
(
self
,
foo
,
bar
):
print
foo
,
bar