Sign in
android
/
platform
/
tools
/
idea
/
c7287d14ff9afb2ae3cc26fa670a0da3aaf16965
/
.
/
python
/
testData
/
refactoring
/
extractmethod
/
Statements.after.py
blob: 70aa5c212096e59bac018b0876ff680f7429dd77 [
file
] [
log
] [
blame
]
def
foo
(
a_new
,
b_new
):
puts
(
a_new
+
b_new
*
123
)
print
(
"Hello from extract method"
)
def
f
():
a
=
1
b
=
1
foo
(
a
,
b
)