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 avdd
Recipients avdd, bquinlan
Date 2011-01-17.11:36:41
SpamBayes Score 1.9969154e-10
Marked as misclassified No
Message-id <1295264205.53.0.00528795417101.issue10918@psf.upfronthosting.co.za>
In-reply-to
Content
What now?

Python 3.1.3 (r313:86834, Jan 17 2011, 22:33:40) 
[GCC 4.4.1] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> def foo(f, **kw):
...     pass
... 
>>> foo(1, **{'f': 2})
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: foo() got multiple values for keyword argument 'f'
>>>
History
Date User Action Args
2011-01-17 11:36:45avddsetrecipients: + avdd, bquinlan
2011-01-17 11:36:45avddsetmessageid: <1295264205.53.0.00528795417101.issue10918@psf.upfronthosting.co.za>
2011-01-17 11:36:41avddlinkissue10918 messages
2011-01-17 11:36:41avddcreate