diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-11 00:27:33 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-11-11 00:27:33 (GMT) |
commit | 73e9bd4d259c3c213347e45d4bb5bf20fb51c7f4 (patch) | |
tree | 881f1d149dd48c3ec278834efd0e7d6f08212d8e /Misc | |
parent | 6d9388faab63343db47e59eb28c926bc3cbe75d1 (diff) | |
parent | 5c89b4ec55bc7ebe799da296e01544a5bcdc4250 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 |