summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-11 00:25:36 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-11 00:25:36 (GMT)
commit5c89b4ec55bc7ebe799da296e01544a5bcdc4250 (patch)
treed220d323f041f4d173d9b799c8fc2c021b05d349 /Misc
parentdf3abec2c98b84c3ec516857cb84bf3be9e0b773 (diff)
downloadcpython-5c89b4ec55bc7ebe799da296e01544a5bcdc4250.zip
cpython-5c89b4ec55bc7ebe799da296e01544a5bcdc4250.tar.gz
cpython-5c89b4ec55bc7ebe799da296e01544a5bcdc4250.tar.bz2
Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket().
Original patch by Jeff McNeil.
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 6cfa567..b035e24 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -159,6 +159,9 @@ Core and Builtins
Library
-------
+- Issue #16357: fix calling accept() on a SSLSocket created through
+ SSLContext.wrap_socket(). Original patch by Jeff McNeil.
+
- Issue #16350: zlib.Decompress.decompress() now accumulates data from
successive calls after EOF in unused_data, instead of only saving the argument
to the last call. Patch by Serhiy Storchaka.