mirror of https://github.com/python/cpython
Issue #6476: Document that os.spawnle and os.spawnve are not thread-safe under Windows.
This commit is contained in:
parent
c8ebbbc09b
commit
711cb58db1
|
@ -2052,7 +2052,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.
|
||||
|
||||
.. versionadded:: 1.6
|
||||
|
||||
|
|
Loading…
Reference in New Issue