Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
ArgumentEqualDefault_after.py
blob: 9ceee8cd11e500f246094f9d7161da8454283601 [
file
] [
log
] [
blame
]
def
foo
(
a
,
b
=
345
,
c
=
1
):
pass
#PY-3261
foo
(
1
,
c
=
22
)