summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-14 18:37:24 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-14 18:37:24 (GMT)
commit328ec7455f11f14cb4bf7077c6a4fa48b2356433 (patch)
tree283338f8069ce73208fc79f2d66bf7a337a60e17 /Misc
parent9e0b864ac07ab85b618ccf3831eae97b2c91fb2e (diff)
downloadcpython-328ec7455f11f14cb4bf7077c6a4fa48b2356433.zip
cpython-328ec7455f11f14cb4bf7077c6a4fa48b2356433.tar.gz
cpython-328ec7455f11f14cb4bf7077c6a4fa48b2356433.tar.bz2
Issue #9854: The default read() implementation in io.RawIOBase now
handles non-blocking readinto() returning None correctly.
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 8dba55b..d528d3c 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -52,6 +52,9 @@ Core and Builtins
Library
-------
+- Issue #9854: The default read() implementation in io.RawIOBase now
+ handles non-blocking readinto() returning None correctly.
+
- Issue #1552: socket.socketpair() now returns regular socket.socket
objects supporting the whole socket API (rather than the "raw"
_socket.socket objects).