diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2018-05-30 23:00:04 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-05-30 23:00:04 (GMT) |
commit | 02e2a085dc1740b1cbf4ba2ed77335c84ce8a367 (patch) | |
tree | dc9f7b61caf1fc5c1192cbe1d31c9e5d6dacd1f6 /Doc/whatsnew/3.7.rst | |
parent | 495e567a2b3bbe3b99f0c253edf12997a9ff4ee1 (diff) | |
download | cpython-02e2a085dc1740b1cbf4ba2ed77335c84ce8a367.zip cpython-02e2a085dc1740b1cbf4ba2ed77335c84ce8a367.tar.gz cpython-02e2a085dc1740b1cbf4ba2ed77335c84ce8a367.tar.bz2 |
bpo-31368: Enhance os.preadv() documentation (GH-7254)
Diffstat (limited to 'Doc/whatsnew/3.7.rst')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index 2471989..9989eaf 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -1091,9 +1091,10 @@ The new :func:`~os.register_at_fork` function allows registering Python callbacks to be executed at process fork. (Contributed by Antoine Pitrou in :issue:`16500`.) -Exposed the *preadv*, *preadv2*, *pwritev* and *pwritev2* system calls through -the new :func:`~os.preadv` and :func:`~os.pwritev` functions. -(Contributed by Pablo Galindo in :issue:`31368`.) +Added :func:`os.preadv` (combine the functionality of :func:`os.readv` and +:func:`os.pread`) and :func:`os.pwritev` functions (combine the functionality +of :func:`os.writev` and :func:`os.pwrite`). (Contributed by Pablo Galindo in +:issue:`31368`.) The mode argument of :func:`os.makedirs` no longer affects the file permission bits of newly-created intermediate-level directories. |