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