summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-03-04 19:51:55 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-03-04 19:51:55 (GMT)
commitf7f3b0a14a63ca355097fa2ee546d20888e39faa (patch)
tree08d835131d66ba5667ab146032accdc731db69f6 /Misc/NEWS
parent7beb4f96dc9ac3facd2a31912730b128426892b5 (diff)
downloadcpython-f7f3b0a14a63ca355097fa2ee546d20888e39faa.zip
cpython-f7f3b0a14a63ca355097fa2ee546d20888e39faa.tar.gz
cpython-f7f3b0a14a63ca355097fa2ee546d20888e39faa.tar.bz2
Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the SSL layer but the underlying connection hasn't been closed.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 75e1cc1..1298434 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,9 @@ Core and Builtins
Library
-------
+- Issue #23576: Avoid stalling in SSL reads when EOF has been reached in the
+ SSL layer but the underlying connection hasn't been closed.
+
- Issue #23504: Added an __all__ to the types module.
- Issue #20204: Added the __module__ attribute to _tkinter classes.