[issue34812] [Security] support.args_from_interpreter_flags() doesn't inherit -I (isolated) flag

2018-11-23 Thread STINNER Victor
STINNER Victor added the comment: Ok, the bug is now fixed in Python 3.6, 3.7 and master branches ;-) -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue34812] [Security] support.args_from_interpreter_flags() doesn't inherit -I (isolated) flag

2018-11-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset cc0e0a2214d6515cf6ba4c7b164902a87e321b45 by Victor Stinner in branch '3.6': bpo-34812: subprocess._args_from_interpreter_flags(): add isolated (GH-10675) (GH-10688)

[issue34812] [Security] support.args_from_interpreter_flags() doesn't inherit -I (isolated) flag

2018-11-23 Thread miss-islington
miss-islington added the comment: New changeset 01e579949ab546cd4cdd0d6d18e3ef41ce94f46e by Miss Islington (bot) in branch '3.7': bpo-34812: subprocess._args_from_interpreter_flags(): add isolated (GH-10675) https://github.com/python/cpython/commit/01e579949ab546cd4cdd0d6d18e3ef41ce94f46e

[issue34812] [Security] support.args_from_interpreter_flags() doesn't inherit -I (isolated) flag

2018-11-23 Thread STINNER Victor
Change by STINNER Victor : -- pull_requests: +9940 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34812] [Security] support.args_from_interpreter_flags() doesn't inherit -I (isolated) flag

2018-11-23 Thread miss-islington
Change by miss-islington : -- pull_requests: +9936 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34812] [Security] support.args_from_interpreter_flags() doesn't inherit -I (isolated) flag

2018-11-23 Thread STINNER Victor
STINNER Victor added the comment: New changeset 9de363271519e0616f4a7b59427057c4810d3acc by Victor Stinner in branch 'master': bpo-34812: subprocess._args_from_interpreter_flags(): add isolated (GH-10675) https://github.com/python/cpython/commit/9de363271519e0616f4a7b59427057c4810d3acc

[issue34812] [Security] support.args_from_interpreter_flags() doesn't inherit -I (isolated) flag

2018-11-23 Thread STINNER Victor
STINNER Victor added the comment: I tried to explain how to fix the bug, but nobody came up with a working change 2 months, so I wrote the PR myself. It's an important security issue, since the function is used by multiprocessing and distutils modules to spawn new child processes.