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 grahamd
Recipients amaury.forgeotdarc, grahamd
Date 2009-07-22.12:15:32
SpamBayes Score 0.0011388003
Marked as misclassified No
Message-id <1248264934.06.0.302530443055.issue6501@psf.upfronthosting.co.za>
In-reply-to
Content
The workaround of using:

#if defined(WIN32) && PY_MAJOR_VERSION >= 3
        _wputenv(L"PYTHONIOENCODING=cp1252:backslashreplace");
#endif

        Py_Initialize();

gets around the crash on startup.

I haven't done sufficient testing to know if this may introduce any other 
problems given that one is overriding default I/O encoding for whole 
process.
History
Date User Action Args
2009-07-22 12:15:34grahamdsetrecipients: + grahamd, amaury.forgeotdarc
2009-07-22 12:15:34grahamdsetmessageid: <1248264934.06.0.302530443055.issue6501@psf.upfronthosting.co.za>
2009-07-22 12:15:32grahamdlinkissue6501 messages
2009-07-22 12:15:32grahamdcreate