diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2018-04-19 04:26:18 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@krypto.org> | 2018-04-19 04:26:18 (GMT) |
commit | 9009f3e389123c5f94d4d12f1f51b0a88531c37c (patch) | |
tree | aa7f2ecd070258ca9d6a57340560a55986ee3e15 /Doc | |
parent | e3a523a0fa16aec880880928303bfcbd1fb74bc2 (diff) | |
download | cpython-9009f3e389123c5f94d4d12f1f51b0a88531c37c.zip cpython-9009f3e389123c5f94d4d12f1f51b0a88531c37c.tar.gz cpython-9009f3e389123c5f94d4d12f1f51b0a88531c37c.tar.bz2 |
Update What's new in 3.7 to reference preadv, pwritev and posix_spawn (GH-6524)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 0b82251..3ce20fa 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 --- |