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 vstinner
Recipients vstinner
Date 2010-06-06.18:28:39
SpamBayes Score 0.1782412
Marked as misclassified No
Message-id <1275848921.87.0.52681950966.issue8923@psf.upfronthosting.co.za>
In-reply-to
Content
_PyUnicode_AsDefaultEncodedString() has two arguments: unicode (input string) and errors. If errors is not NULL, it calls Py_FatalError()!

The argument is useful: all functions call it with errors=NULL.

Attached patch removes the argument.
History
Date User Action Args
2010-06-06 18:28:41vstinnersetrecipients: + vstinner
2010-06-06 18:28:41vstinnersetmessageid: <1275848921.87.0.52681950966.issue8923@psf.upfronthosting.co.za>
2010-06-06 18:28:40vstinnerlinkissue8923 messages
2010-06-06 18:28:40vstinnercreate