Sign in
android
/
platform
/
tools
/
idea
/
c7287d14ff9afb2ae3cc26fa670a0da3aaf16965
/
.
/
python
/
testData
/
refactoring
/
extractmethod
/
MethodInIf.after.py
blob: 56a5e579abfae763ef65e52152f2ec4aa051064a [
file
] [
log
] [
blame
]
class
C
:
def
baz
(
self
,
arg_new
):
self
.
bar
(
arg_new
)
def
foo
(
self
,
option
,
arg
):
if
option
:
self
.
baz
(
arg
)
def
bar
(
self
,
arg
):
pass