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 gangesmaster
Recipients gangesmaster
Date 2008-06-27.19:17:45
SpamBayes Score 0.00044311094
Marked as misclassified No
Message-id <1214594266.45.0.948323179256.issue3219@psf.upfronthosting.co.za>
In-reply-to
Content
under python 2.5 (and possibly 2.6 beta), the following code runs
successfully:

>>> def f(**kwargs):
...     print kwargs
...
>>> f(a=5,b=7,a=8)
{'a': 8, 'b': 7}

while in python 2.4, it fails as expected (complaining that "a" is given
twice")

http://mail.python.org/pipermail/python-dev/2008-June/080782.html
History
Date User Action Args
2008-06-27 19:17:46gangesmastersetspambayes_score: 0.000443111 -> 0.00044311094
recipients: + gangesmaster
2008-06-27 19:17:46gangesmastersetspambayes_score: 0.000443111 -> 0.000443111
messageid: <1214594266.45.0.948323179256.issue3219@psf.upfronthosting.co.za>
2008-06-27 19:17:45gangesmasterlinkissue3219 messages
2008-06-27 19:17:45gangesmastercreate