This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author benjamin.peterson
Recipients GhislainHivon, benjamin.peterson
Date 2010-03-21.21:30:55
SpamBayes Score 0.0013321846
Marked as misclassified No
Message-id <1269207057.62.0.168030165655.issue8177@psf.upfronthosting.co.za>
In-reply-to
Content
It's a weird error even it reverse order:

>>> def f(foo, *args):
...     pass
...
>>> f(*(1, 2, 3), foo=4)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: f() got multiple values for keyword argument 'foo'
History
Date User Action Args
2010-03-21 21:30:57benjamin.petersonsetrecipients: + benjamin.peterson, GhislainHivon
2010-03-21 21:30:57benjamin.petersonsetmessageid: <1269207057.62.0.168030165655.issue8177@psf.upfronthosting.co.za>
2010-03-21 21:30:56benjamin.petersonlinkissue8177 messages
2010-03-21 21:30:55benjamin.petersoncreate