]> granicus.if.org Git - python/commitdiff
Issue #6476: Document that os.spawnle and os.spawnve are not thread-safe under Windows.
authorAntoine Pitrou <solipsis@pitrou.net>
Mon, 18 Jul 2011 23:26:58 +0000 (01:26 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Mon, 18 Jul 2011 23:26:58 +0000 (01:26 +0200)
Doc/library/os.rst

index 5c84e85ca9631b5fbb89b7c6a592bb249c0fddf1..d8ab8b7e1c411af12e0f35683aad428a6440269a 100644 (file)
@@ -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