From: Mark Williams Date: Sun, 3 Mar 2019 17:42:25 +0000 (-0800) Subject: bpo-36170: posix_spawn doesn't exist on 3.7 (GH-12143) X-Git-Tag: v3.8.0a3~186 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b50400fbe607ef558d6c0033efa697c99417507;p=thirdparty%2FPython%2Fcpython.git bpo-36170: posix_spawn doesn't exist on 3.7 (GH-12143) The 3.8 docs claim that `os.posix_spawn` was introduced in 3.7, but it wasn't; it will be introduced in 3.8. --- diff --git a/Doc/library/os.rst b/Doc/library/os.rst index aa1316b1f24a..f8803af95200 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -3465,7 +3465,7 @@ written in Python, such as a mail server's external command delivery program. :c:data:`POSIX_SPAWN_SETSCHEDPARAM` and :c:data:`POSIX_SPAWN_SETSCHEDULER` flags. - .. versionadded:: 3.7 + .. versionadded:: 3.8 .. availability:: Unix.