[Python-checkins] Update What's new in 3.7 to reference preadv, pwritev and posix_spawn (GH-6524)

Miss Islington (bot) webhook-mailer at python.org
Thu Apr 19 01:26:44 EDT 2018


https://github.com/python/cpython/commit/198c0c0509311cc0f6365ae920c2d87dbcfe7924
commit: 198c0c0509311cc0f6365ae920c2d87dbcfe7924
branch: 3.7
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-04-18T22:26:41-07:00
summary:

Update What's new in 3.7 to reference preadv, pwritev and posix_spawn (GH-6524)

(cherry picked from commit 9009f3e389123c5f94d4d12f1f51b0a88531c37c)

Co-authored-by: Pablo Galindo <Pablogsal at gmail.com>

files:
M Doc/whatsnew/3.7.rst

diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst
index 475dce089377..afa0bc2b6071 100644
--- a/Doc/whatsnew/3.7.rst
+++ b/Doc/whatsnew/3.7.rst
@@ -593,6 +593,14 @@ New function :func:`~os.register_at_fork` allows registering Python callbacks
 to be executed on a process fork.  (Contributed by Antoine Pitrou in
 :issue:`16500`.)
 
+Exposed the system calls *preadv*, *preadv2*, *pwritev* and *pwritev2* through
+the new functions :func:`~os.preadv` and :func:`~os.pwritev`. (Contributed by
+Pablo Galindo in :issue:`31368`.)
+
+Exposed the system call *posix_spawn* through the new function
+:func:`~os.posix_spawn`. (Contributed by Pablo Galindo, Serhiy Storchaka and
+Gregory P. Smith in :issue:`20104`.)
+
 pdb
 ---
 



More information about the Python-checkins mailing list