]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-34812: subprocess._args_from_interpreter_flags(): add isolated (GH-10675)
authorVictor Stinner <vstinner@redhat.com>
Fri, 23 Nov 2018 16:54:20 +0000 (17:54 +0100)
committerGitHub <noreply@github.com>
Fri, 23 Nov 2018 16:54:20 +0000 (17:54 +0100)
commit9de363271519e0616f4a7b59427057c4810d3acc
tree00c24caf2c5762de38fed2bef4346bbf355fcb42
parentba57963a95a994947b8bec6869e810a74a751278
bpo-34812: subprocess._args_from_interpreter_flags(): add isolated (GH-10675)

The "-I" command line option (run Python in isolated mode) is now
also copied by the multiprocessing and distutils modules when
spawning child processes. Previously, only -E and -s options (enabled
by -I) were copied.

subprocess._args_from_interpreter_flags() now copies the -I flag.
Lib/subprocess.py
Lib/test/test_support.py
Misc/NEWS.d/next/Security/2018-11-23-15-00-23.bpo-34812.84VQnb.rst [new file with mode: 0644]