summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2016-05-18 15:35:00 (GMT)
committerGuido van Rossum <guido@python.org>2016-05-18 15:35:00 (GMT)
commit1cea70f08c0b6aa3fccb246416b367e9afc1932a (patch)
treeb38bb9c6fa03a2bdbdb7a9c7d73e3287e5a63923 /Misc
parente5ea1abf91f79b5eaa8ab638c28400285a8fabfd (diff)
downloadcpython-1cea70f08c0b6aa3fccb246416b367e9afc1932a.zip
cpython-1cea70f08c0b6aa3fccb246416b367e9afc1932a.tar.gz
cpython-1cea70f08c0b6aa3fccb246416b367e9afc1932a.tar.bz2
Fix #27014 -- infinite recursion using typing.py.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 97ddbb1..8d91d78 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -123,6 +123,8 @@ Core and Builtins
Library
-------
+- Issue #27014: Fix infinite recursion using typing.py. Thanks to Kalle Tuure!
+
- Issue #14132: Fix urllib.request redirect handling when the target only has
a query string. Original fix by Ján Janech.