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 lemburg
Recipients lemburg, loewis, pitrou, stutzbach
Date 2010-08-18.16:18:14
SpamBayes Score 0.00091927405
Marked as misclassified No
Message-id <4C6C07C4.8030502@egenix.com>
In-reply-to <1282147754.35.0.781257267712.issue8781@psf.upfronthosting.co.za>
Content
Daniel Stutzbach wrote:
> 
> Daniel Stutzbach <daniel@stutzbachenterprises.com> added the comment:
> 
> Attached is a patch implementing the change agreed upon in the earlier discussion.  This will allow wchar_t <-> Py_UNICODE conversions to use memcpy on systems where wchar_t and Py_UNICODE have the same size but different signs (e.g., Linux).

Please make sure that those places where you replaced HAVE_USABLE_WCHAR_T
are enclosed in

#ifdef HAVE_WCHAR_H
...
#endif

sections. For unicodeobject.c that's true, not sure about the other
places.
History
Date User Action Args
2010-08-18 16:18:16lemburgsetrecipients: + lemburg, loewis, pitrou, stutzbach
2010-08-18 16:18:15lemburglinkissue8781 messages
2010-08-18 16:18:14lemburgcreate