diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-01-08 14:21:28 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-01-08 14:21:28 (GMT) |
commit | 57ddf78b6b18d9da6f466b4e6da0437c3271196e (patch) | |
tree | cf55257edc004a09f62e19d67668e30634f17712 /Misc | |
parent | 2bcbc141173e5cd2ed36693a71bed8d5a1a54dd4 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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(). |