Files
openide/python/testData/inspections/ArgumentEqualDefault.py
Ekaterina Tuzova 4659d71bc1 fixed testdata
2012-04-23 16:41:52 +04:00

6 lines
151 B
Python

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)