Kaydet (Commit) 0e752dd3 authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Issue #6476: Document that os.spawnle and os.spawnve are not thread-safe under Windows.

üst 12ebefc9
......@@ -1930,7 +1930,9 @@ written in Python, such as a mail server's external command delivery program.
os.spawnvpe(os.P_WAIT, 'cp', L, os.environ)
Availability: Unix, Windows. :func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`
and :func:`spawnvpe` are not available on Windows.
and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and
:func:`spawnve` are not thread-safe on Windows; we advise you to use the
:mod:`subprocess` module instead.
.. data:: P_NOWAIT
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment