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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, benjamin.peterson
Date 2009-01-19.18:10:29
SpamBayes Score 0.010544558
Marked as misclassified No
Message-id <1232388630.86.0.554377813252.issue4978@psf.upfronthosting.co.za>
In-reply-to
Content
The patch works when the unicode contains only ascii, but crashes with
the following input:

>>> def f(hehe): return 42
... 
>>> f(**{u'hehe': 1})
42
>>> f(**{u'héhé': 1})
Segmentation fault

The two PyString_AsString(keyword) calls are now wrong and should be
changed.
History
Date User Action Args
2009-01-19 18:10:30amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, benjamin.peterson
2009-01-19 18:10:30amaury.forgeotdarcsetmessageid: <1232388630.86.0.554377813252.issue4978@psf.upfronthosting.co.za>
2009-01-19 18:10:30amaury.forgeotdarclinkissue4978 messages
2009-01-19 18:10:29amaury.forgeotdarccreate