summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-01-08 14:21:28 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-01-08 14:21:28 (GMT)
commit57ddf78b6b18d9da6f466b4e6da0437c3271196e (patch)
treecf55257edc004a09f62e19d67668e30634f17712 /Misc
parent2bcbc141173e5cd2ed36693a71bed8d5a1a54dd4 (diff)
downloadcpython-57ddf78b6b18d9da6f466b4e6da0437c3271196e.zip
cpython-57ddf78b6b18d9da6f466b4e6da0437c3271196e.tar.gz
cpython-57ddf78b6b18d9da6f466b4e6da0437c3271196e.tar.bz2
Issue #20113: os.readv() and os.writev() now raise an OSError exception on
error instead of returning -1.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c17e493..1306891 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -36,6 +36,9 @@ Core and Builtins
Library
-------
+- Issue #20113: os.readv() and os.writev() now raise an OSError exception on
+ error instead of returning -1.
+
- Issue #20072: Fixed multiple errors in tkinter with wantobjects is False.
- Issue #20108: Avoid parameter name clash in inspect.getcallargs().