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 stutzbach
Recipients brian.curtin, flox, lemburg, loewis, pitrou, stutzbach, tim.golden
Date 2010-08-25.12:08:28
SpamBayes Score 0.0014098311
Marked as misclassified No
Message-id <1282738113.76.0.693237850532.issue8781@psf.upfronthosting.co.za>
In-reply-to
Content
On Windows, the Python headers define HAVE_USABLE_WCHAR_T and Py_UNICODE_SIZE 2, so we are already relying on sizeof(wchar_t) == 2 on Windows.

My patch ran into trouble because it inadvertently disabled that assumption in a few places, causing code to take the slow path and convert between wchar_t * and Py_UNICODE *.  The test that failed checks that the fast path was taken on Windows.
History
Date User Action Args
2010-08-25 12:08:33stutzbachsetrecipients: + stutzbach, lemburg, loewis, pitrou, tim.golden, brian.curtin, flox
2010-08-25 12:08:33stutzbachsetmessageid: <1282738113.76.0.693237850532.issue8781@psf.upfronthosting.co.za>
2010-08-25 12:08:32stutzbachlinkissue8781 messages
2010-08-25 12:08:28stutzbachcreate