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-16.01:10:19
SpamBayes Score 1.6760123e-05
Marked as misclassified No
Message-id <1271380222.1.0.273272196711.issue8412@psf.upfronthosting.co.za>
In-reply-to
Content
os.system() doesn't support bytes, bytearray not str containing surrogates.

Attached patch uses PyUnicode_FSConverter, bytes2str and release_bytes in (the non-Windows version of) os.system() to support all of this. It locks the buffer because os.system() releases the GIL when calling system().
History
Date User Action Args
2010-04-16 01:10:22vstinnersetrecipients: + vstinner
2010-04-16 01:10:22vstinnersetmessageid: <1271380222.1.0.273272196711.issue8412@psf.upfronthosting.co.za>
2010-04-16 01:10:20vstinnerlinkissue8412 messages
2010-04-16 01:10:19vstinnercreate