Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
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
)