Sign in
android
/
platform
/
tools
/
idea
/
0f831a730c50607e2ffd95020875af6185e17734
/
.
/
python
/
testData
/
refactoring
/
changeSignature
/
updateDocstring.before.py
blob: 3a441ebbeeb2dc91eeb42b9354020d91cec59867 [
file
]
def
foo
(
a
,
d
=
1
):
"""
:param a:
:param d:
"""
pass
foo
(
"a"
,
d
=
"b"
)