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 pitrou
Recipients dcoles, pitrou, vstinner
Date 2011-05-06.19:55:46
SpamBayes Score 5.250749e-09
Marked as misclassified No
Message-id <1304711736.3520.7.camel@localhost.localdomain>
In-reply-to <1304709169.2.0.592458854747.issue12010@psf.upfronthosting.co.za>
Content
> Possibly of more interest for Python is that it's no longer buildable
> without wchar_t support. While unicodeobject is pretty good at
> checking HAVE_WCHAR_H, a number of modules and even pythonrun.c
> directly use wchar_t or functions like PyUnicode_FromWideChar without
> providing a fallback. Does Python 3 now require wchar_t or are these
> bugs? (either option seems sensible).

It's pretty much required since we rely on mbstowcs and friends to
convert some 8-bit strings (such as environment variables, command-line
args...) to unicode.

> At least in Android the distinction doesn't seem to matter as
> Android's internationalziation/localization policy seems to be "use
> Java".

Ha :-)
History
Date User Action Args
2011-05-06 19:55:46pitrousetrecipients: + pitrou, vstinner, dcoles
2011-05-06 19:55:46pitroulinkissue12010 messages
2011-05-06 19:55:46pitroucreate