[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2018-12-14 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2018-12-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 922b2a0d0d9928af420ea4d5c104f8be72517aa2 by Serhiy Storchaka in branch '3.7': [3.7] bpo-31446: Copy command line that should be passed to CreateProcessW(). (GH-11141). (GH-11149) https://github.com/python/cpython/commit/922b2a0d0d9928af420ea4

[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2018-12-14 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +10378 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2018-12-14 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 7b36016a15aeed0d76a4c05a66203e6d7723aace by Serhiy Storchaka (Vladimir Matveev) in branch 'master': bpo-31446: Copy command line that should be passed to CreateProcessW(). (GH-11141) https://github.com/python/cpython/commit/7b36016a15aeed0d76

[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2018-12-13 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- assignee: -> serhiy.storchaka nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list m

[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2018-12-13 Thread Andrew Svetlov
Change by Andrew Svetlov : -- versions: +Python 3.8 -Python 3.6 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2018-12-12 Thread Vladimir Matveev
Change by Vladimir Matveev : -- keywords: +patch pull_requests: +10371 stage: -> patch review ___ Python tracker ___ ___ Python-bug

[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2017-09-13 Thread STINNER Victor
STINNER Victor added the comment: I remove Python 3.3-3.5 from Python versions since these versions don't accept bugfixes anymore, only security fixes: https://devguide.python.org/#status-of-python-branches -- nosy: +haypo versions: -Python 3.3, Python 3.4, Python 3.5

[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2017-09-13 Thread STINNER Victor
Changes by STINNER Victor : -- components: +Windows nosy: +paul.moore, steve.dower, tim.golden, zach.ware ___ Python tracker ___ ___

[issue31446] _winapi.CreateProcess (used by subprocess) is not thread-safe

2017-09-13 Thread Evan Andrews
New submission from Evan Andrews: The method used for spawning subprocesses on Windows is not thread-safe under certain circumstances. The following example demonstrates how this manifests: >>> import threading >>> import subprocess >>> for i in range(100): ... threading.Thr