summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Williams <mrw@enotuniq.org>2019-03-03 17:42:25 (GMT)
committerNed Deily <nad@python.org>2019-03-03 17:42:25 (GMT)
commit8b50400fbe607ef558d6c0033efa697c99417507 (patch)
tree020f7364d9d69d0d59765b4d60730e07fe4438e7
parent8c17d928eb4602201d02b475caffc63340df849e (diff)
downloadcpython-8b50400fbe607ef558d6c0033efa697c99417507.zip
cpython-8b50400fbe607ef558d6c0033efa697c99417507.tar.gz
cpython-8b50400fbe607ef558d6c0033efa697c99417507.tar.bz2
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.
-rw-r--r--Doc/library/os.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index aa1316b..f8803af 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.