summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-18 22:59:00 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-18 22:59:00 (GMT)
commit98b46702d2798d0db258a02f6a1854dfc5f659fd (patch)
tree13cb8a131699851391f45fd98cbf3220685ba074 /Misc
parent8db3027e6a79836ea8c77e73be77492c68715da5 (diff)
downloadcpython-98b46702d2798d0db258a02f6a1854dfc5f659fd.zip
cpython-98b46702d2798d0db258a02f6a1854dfc5f659fd.tar.gz
cpython-98b46702d2798d0db258a02f6a1854dfc5f659fd.tar.bz2
Issue #9854: SocketIO objects now observe the RawIOBase interface in
non-blocking mode: they return None when an operation would block (instead of raising an exception).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index c1a5bc8..34cea64 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -52,6 +52,10 @@ Core and Builtins
Library
-------
+- Issue #9854: SocketIO objects now observe the RawIOBase interface in
+ non-blocking mode: they return None when an operation would block (instead
+ of raising an exception).
+
- Issue #1730136: Fix the comparison between a tk.font.Font and an object of
another kind.