summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next
diff options
context:
space:
mode:
authorPablo Galindo <Pablogsal@gmail.com>2018-01-29 01:56:10 (GMT)
committerGregory P. Smith <greg@krypto.org>2018-01-29 01:56:10 (GMT)
commit6c6ddf97c402709713d668d0ed53836a7749ba99 (patch)
treee403bfbc134daea26026db43b207bbdb203019fa /Misc/NEWS.d/next
parentf5b04a360e44aa9733f7a92dd66d2292d6c52955 (diff)
downloadcpython-6c6ddf97c402709713d668d0ed53836a7749ba99.zip
cpython-6c6ddf97c402709713d668d0ed53836a7749ba99.tar.gz
cpython-6c6ddf97c402709713d668d0ed53836a7749ba99.tar.bz2
bpo-20104: Expose `posix_spawn` in the os module (GH-5109)
Add os.posix_spawn to wrap the low level POSIX API of the same name. Contributed by Pablo Galindo.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-01-06-01-14-53.bpo-20104.9DkKb8.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-01-06-01-14-53.bpo-20104.9DkKb8.rst b/Misc/NEWS.d/next/Core and Builtins/2018-01-06-01-14-53.bpo-20104.9DkKb8.rst
new file mode 100644
index 0000000..cb69f32
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-01-06-01-14-53.bpo-20104.9DkKb8.rst
@@ -0,0 +1 @@
+Expose posix_spawn as a low level API in the os module.