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 meilyadam
Recipients eryksun, meilyadam, paul.moore, steve.dower, tim.golden, zach.ware
Date 2020-01-24.01:25:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1579829106.08.0.894852975245.issue39439@roundup.psfhosted.org>
In-reply-to
Content
OK, that makes sense.

For 3.7, I can create a PR for that corrects the order of arguments passed into _winapi.CreateProcess

For 3.8 / master, the problem appears to be that the check in popen_spawn_win32.py to set the subprocess env is failing because sys.executable != spawn.get_executable() -- spawn.get_executable() is returning sys._base_executable. So, can you confirm that the fix is to just change spawn.get_executable() to return sys.executable, like it was prior to the PR mentioned in the other ticket?
History
Date User Action Args
2020-01-24 01:25:06meilyadamsetrecipients: + meilyadam, paul.moore, tim.golden, zach.ware, eryksun, steve.dower
2020-01-24 01:25:06meilyadamsetmessageid: <1579829106.08.0.894852975245.issue39439@roundup.psfhosted.org>
2020-01-24 01:25:06meilyadamlinkissue39439 messages
2020-01-24 01:25:05meilyadamcreate