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 Arfrever, amaury.forgeotdarc, eric.araujo, ezio.melotti, pitrou, vstinner
Date 2010-08-13.21:27:22
SpamBayes Score 2.855966e-07
Marked as misclassified No
Message-id <1281734844.77.0.194095228933.issue9425@psf.upfronthosting.co.za>
In-reply-to
Content
New version of the patch _Py_wchar2char-2.patch:
 - _Py_wchar2char() only escapes characters in range U+DC80..U+DCFF (instead of U+DC00..U+DCFF)
 - add a comment to _Py_char2wchar()

> I don't understand why you decrement `size` in the second pass.

Because I would like to avoid buffer overflow when calling wcstombs(). wcstombs() might write more bytes at the second step, even if I don't think that it would be possible.
History
Date User Action Args
2010-08-13 21:27:25vstinnersetrecipients: + vstinner, amaury.forgeotdarc, pitrou, ezio.melotti, eric.araujo, Arfrever
2010-08-13 21:27:24vstinnersetmessageid: <1281734844.77.0.194095228933.issue9425@psf.upfronthosting.co.za>
2010-08-13 21:27:23vstinnerlinkissue9425 messages
2010-08-13 21:27:23vstinnercreate