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 akira
Recipients akira, ezio.melotti, peter0, terry.reedy
Date 2014-03-22.17:54:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1395510870.96.0.790490686561.issue19264@psf.upfronthosting.co.za>
In-reply-to
Content
I've checked the source code for 3.4; `subprocess` uses `_winapi.CreateProcess` on Windows [1] that in turn uses `CreateProcessW` [2]. CreateProcessA is not used.

`Popen` should already support Unicode on Windows though I don't see explicit tests for non-ascii arguments or arguments that can't be encoded using `mbcs` character encoding.

[1]: http://hg.python.org/cpython/file/3.4/Lib/subprocess.py#l1063
[2]: http://hg.python.org/cpython/file/3.4/Modules/_winapi.c#l579
History
Date User Action Args
2014-03-22 17:54:31akirasetrecipients: + akira, terry.reedy, ezio.melotti, peter0
2014-03-22 17:54:30akirasetmessageid: <1395510870.96.0.790490686561.issue19264@psf.upfronthosting.co.za>
2014-03-22 17:54:30akiralinkissue19264 messages
2014-03-22 17:54:30akiracreate