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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, vstinner
Date 2010-05-20.12:29:32
SpamBayes Score 0.0026165752
Marked as misclassified No
Message-id <1274358575.09.0.0825753656663.issue8776@psf.upfronthosting.co.za>
In-reply-to
Content
> sys.argv is decoded with the file system encoding

IIRC this is not exact. Py_Main signature is 
    Py_Main(int argc, wchar_t **argv)
then PyUnicode_FromWideChar is used, and there is no conversion (except from UCS4 to UCS2).
The wchar_t strings themselves are built with mbstowcs(), the file system encoding is not used.
History
Date User Action Args
2010-05-20 12:29:35amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, vstinner
2010-05-20 12:29:35amaury.forgeotdarcsetmessageid: <1274358575.09.0.0825753656663.issue8776@psf.upfronthosting.co.za>
2010-05-20 12:29:33amaury.forgeotdarclinkissue8776 messages
2010-05-20 12:29:33amaury.forgeotdarccreate