diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2018-01-29 01:56:10 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2018-01-29 01:56:10 (GMT) |
commit | 6c6ddf97c402709713d668d0ed53836a7749ba99 (patch) | |
tree | e403bfbc134daea26026db43b207bbdb203019fa /Misc | |
parent | f5b04a360e44aa9733f7a92dd66d2292d6c52955 (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2018-01-06-01-14-53.bpo-20104.9DkKb8.rst | 1 |
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. |