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 vstinner
Recipients vstinner
Date 2010-04-14.00:01:33
SpamBayes Score 1.199851e-06
Marked as misclassified No
Message-id <1271203298.02.0.466898460687.issue8391@psf.upfronthosting.co.za>
In-reply-to
Content
It would be nice to support the PEP 383 (surrogateescape) for environment variables in os.execvpe(). Attached patch uses PyUnicode_AsEncodedString(val, Py_FileSystemDefaultEncoding, "surrogateescape") to encode an environment variable value.

I'm not sure that PyUnicode_AsEncodedString(val, Py_FileSystemDefaultEncoding, "surrogateescape") does always return a PyBytes object.

I not patched environment keys, but it might be useful.
History
Date User Action Args
2010-04-14 00:01:39vstinnersetrecipients: + vstinner
2010-04-14 00:01:38vstinnersetmessageid: <1271203298.02.0.466898460687.issue8391@psf.upfronthosting.co.za>
2010-04-14 00:01:36vstinnerlinkissue8391 messages
2010-04-14 00:01:35vstinnercreate