summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-11-11 00:27:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-11-11 00:27:33 (GMT)
commit73e9bd4d259c3c213347e45d4bb5bf20fb51c7f4 (patch)
tree881f1d149dd48c3ec278834efd0e7d6f08212d8e /Misc
parent6d9388faab63343db47e59eb28c926bc3cbe75d1 (diff)
parent5c89b4ec55bc7ebe799da296e01544a5bcdc4250 (diff)
downloadcpython-73e9bd4d259c3c213347e45d4bb5bf20fb51c7f4.zip
cpython-73e9bd4d259c3c213347e45d4bb5bf20fb51c7f4.tar.gz
cpython-73e9bd4d259c3c213347e45d4bb5bf20fb51c7f4.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 0646a74..9c0ea03 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -80,6 +80,9 @@ Core and Builtins
Library
-------
+- Issue #16357: fix calling accept() on a SSLSocket created through
+ SSLContext.wrap_socket(). Original patch by Jeff McNeil.
+
- Issue #16409: The reporthook callback made by the legacy
urllib.request.urlretrieve API now properly supplies a constant non-zero
block_size as it did in Python 3.2 and 2.7. This matches the behavior of