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 sheppard
Recipients ezio.melotti, sheppard, vstinner
Date 2014-12-20.02:51:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1419043863.58.0.0453053672153.issue23091@psf.upfronthosting.co.za>
In-reply-to
Content
Here's a simple namedtuple example for good measure.

from collections import namedtuple
Test = namedtuple("Test", [chr(181)])

>>> Test(**{chr(956): "test1"})
Test(µ='test1')

>>> Test(**{chr(181): "test1"})
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: __new__() got an unexpected keyword argument 'µ'
History
Date User Action Args
2014-12-20 02:51:03sheppardsetrecipients: + sheppard, vstinner, ezio.melotti
2014-12-20 02:51:03sheppardsetmessageid: <1419043863.58.0.0453053672153.issue23091@psf.upfronthosting.co.za>
2014-12-20 02:51:03sheppardlinkissue23091 messages
2014-12-20 02:51:03sheppardcreate