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 eryksun
Recipients The Compiler, astrand, eryksun, paul.moore, steve.dower, tim.golden, zach.ware
Date 2015-06-24.02:08:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1435111726.24.0.379183939247.issue24493@psf.upfronthosting.co.za>
In-reply-to
Content
I can't reproduce this in Windows 7 or 10 using Python 3.4. What gets printed for the following?

import os
import subprocess

cmd32 = os.path.join(os.environ['SYSTEMROOT'], 'SysWOW64', 'cmd.exe')
subprocess.call('{} /c set SYSTEMROOT'.format(cmd32), env=os.environ)
History
Date User Action Args
2015-06-24 02:08:46eryksunsetrecipients: + eryksun, paul.moore, astrand, tim.golden, zach.ware, steve.dower, The Compiler
2015-06-24 02:08:46eryksunsetmessageid: <1435111726.24.0.379183939247.issue24493@psf.upfronthosting.co.za>
2015-06-24 02:08:46eryksunlinkissue24493 messages
2015-06-24 02:08:45eryksuncreate