Issue #16133: The asynchat.async_chat.handle_read() method now ignores
socket.error() exceptions with blocking I/O errors: EAGAIN, EALREADY,
EINPROGRESS, or EWOULDBLOCK. Initial patch written by Xavier de Gaye.
diff --git a/Misc/NEWS b/Misc/NEWS
index f1c9ab3..4cfa3c2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,10 @@
Library
-------
+- Issue #16133: The asynchat.async_chat.handle_read() method now ignores
+ socket.error() exceptions with blocking I/O errors: EAGAIN, EALREADY,
+ EINPROGRESS, or EWOULDBLOCK.
+
- Issue #1730136: Fix the comparison between a tkFont.Font and an object of
another kind.