diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-23 16:54:20 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-23 16:54:20 (GMT) |
commit | 9de363271519e0616f4a7b59427057c4810d3acc (patch) | |
tree | 00c24caf2c5762de38fed2bef4346bbf355fcb42 /Misc | |
parent | ba57963a95a994947b8bec6869e810a74a751278 (diff) | |
download | cpython-9de363271519e0616f4a7b59427057c4810d3acc.zip cpython-9de363271519e0616f4a7b59427057c4810d3acc.tar.gz cpython-9de363271519e0616f4a7b59427057c4810d3acc.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Security/2018-11-23-15-00-23.bpo-34812.84VQnb.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Security/2018-11-23-15-00-23.bpo-34812.84VQnb.rst b/Misc/NEWS.d/next/Security/2018-11-23-15-00-23.bpo-34812.84VQnb.rst new file mode 100644 index 0000000..860404f --- /dev/null +++ b/Misc/NEWS.d/next/Security/2018-11-23-15-00-23.bpo-34812.84VQnb.rst @@ -0,0 +1,4 @@ +The :option:`-I` command line option (run Python in isolated mode) is now +also copied by the :mod:`multiprocessing` and :mod:`distutils` modules when +spawning child processes. Previously, only :option:`-E` and :option:`-s` options +(enabled by :option:`-I`) were copied. |