Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
python
/
testData
/
inspections
/
ArgumentEqualDefault.py
blob: 4389cc3b45947e39f60caa0224836ac24c915691 [
file
] [
log
] [
blame
]
def
foo
(
a
,
b
=
345
,
c
=
1
):
pass
#PY-3261
foo
(
1
,
<
weak_warning descr
=
"Argument equals to default parameter value"
>
345
<
caret
></
weak_warning
>,
c
=
22
)