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 serhiy.storchaka, vladistan, vstinner
Date 2013-04-14.01:54:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1365904446.45.0.202149644875.issue17694@psf.upfronthosting.co.za>
In-reply-to
Content
PyUnicode_DecodeUnicodeEscape() should set writer.min_length instead of using _PyUnicodeWriter_Prepare(), but the following assertion fails (because writer.size is zero by default):

        assert(writer.pos < writer.size || (writer.pos == writer.size && c == '\n'));

I don't understand this assertion, so I don't know how to modify it.
History
Date User Action Args
2013-04-14 01:54:06vstinnersetrecipients: + vstinner, serhiy.storchaka, vladistan
2013-04-14 01:54:06vstinnersetmessageid: <1365904446.45.0.202149644875.issue17694@psf.upfronthosting.co.za>
2013-04-14 01:54:06vstinnerlinkissue17694 messages
2013-04-14 01:54:06vstinnercreate