summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@gmail.com>2017-03-12 21:06:04 (GMT)
committerGitHub <noreply@github.com>2017-03-12 21:06:04 (GMT)
commitdb522dc86294a99f46a63cd5b54c7c4ab8017c96 (patch)
tree4df44dd8cdd2080fa614976f7ffe9e86137e06fa /Misc/NEWS
parent216803d8e10615c769571fbfbd1f341557f25a14 (diff)
downloadcpython-db522dc86294a99f46a63cd5b54c7c4ab8017c96.zip
cpython-db522dc86294a99f46a63cd5b54c7c4ab8017c96.tar.gz
cpython-db522dc86294a99f46a63cd5b54c7c4ab8017c96.tar.bz2
bpo-29742: asyncio get_extra_info() throws exception (#525) (#646)
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 e56c091..f12b5e6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -43,6 +43,9 @@ Extension Modules
Library
-------
+- bpo-29742: get_extra_info() raises exception if get called on closed ssl transport.
+ Patch by Nikolay Kim.
+
- bpo-8256: Fixed possible failing or crashing input() if attributes "encoding"
or "errors" of sys.stdin or sys.stdout are not set or are not strings.