Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
tools
/
idea
/
a3e39abd38575b02d52f05e041d797023938b6d6
/
.
/
python
/
testData
/
quickFixes
/
PyRemoveArgumentQuickFixTest
/
duplicateKWArg.py
blob: 27180eaae5965ee2379a7bbb338dc379c79d9dad [
file
] [
log
] [
blame
]
Tor Norbye
a3e39ab
2014-04-10 10:54:17 -0700
[
diff
] [
blame^
]
1
2
def
foo
(**
args
):
3
pass
4
5
a
=
{}
6
b
=
{}
7
foo
(**
a
,
<
warning descr
=
"Duplicate **arg"
>**<
caret
>
b
</
warning
>)
8
9