summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2017-01-17 08:56:40 (GMT)
committerLarry Hastings <larry@hastings.org>2017-01-17 08:56:40 (GMT)
commit09e4ce5a951d19c96eb078d22e5eacb17d55b8de (patch)
tree6579d3607474569d0247d3c0fe46ba218c805540 /Misc/NEWS
parentc620f200d619a92a5e5b0c76c5ee890894502d7c (diff)
parent80490525e0e9c08860b0de0c416dbe71c6593af7 (diff)
downloadcpython-09e4ce5a951d19c96eb078d22e5eacb17d55b8de.zip
cpython-09e4ce5a951d19c96eb078d22e5eacb17d55b8de.tar.gz
cpython-09e4ce5a951d19c96eb078d22e5eacb17d55b8de.tar.bz2
Merge 3.5.3 release head with main 3.5 branch.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS21
1 files changed, 17 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 881b268..f357d6d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,19 @@ Core and Builtins
Library
-------
+- Issue #29011: Fix an important omission by adding Deque to the typing module.
+
+- Issue #29219: Fixed infinite recursion in the repr of uninitialized
+ ctypes.CDLL instances.
+
+- Issue #28969: Fixed race condition in C implementation of functools.lru_cache.
+ KeyError could be raised when cached function with full cache was
+ simultaneously called from differen threads with the same uncached arguments.
+
+- Issue #29142: In urllib.request, suffixes in no_proxy environment variable with
+ leading dots could match related hostnames again (e.g. .b.c matches a.b.c).
+ Patch by Milan Oberkirch.
+
What's New in Python 3.5.3?
===========================
@@ -526,17 +539,17 @@ Library
- Issue #27972: Prohibit Tasks to await on themselves.
-- Issue #26923: Fix asyncio.Gather to refuse being cancelled once all
+- Issue #26923: Fix asyncio.Gather to refuse being cancelled once all
children are done.
Patch by Johannes Ebke.
-- Issue #26796: Don't configure the number of workers for default
+- Issue #26796: Don't configure the number of workers for default
threadpool executor.
Initial patch by Hans Lawrenz.
- Issue #28600: Optimize loop.call_soon().
-- Issue #28613: Fix get_event_loop() return the current loop if
+- Issue #28613: Fix get_event_loop() return the current loop if
called from coroutines/callbacks.
- Issue #28639: Fix inspect.isawaitable to always return bool
@@ -551,7 +564,7 @@ Library
- Issue #24142: Reading a corrupt config file left the parser in an
invalid state. Original patch by Florian Höch.
-- Issue #28990: Fix SSL hanging if connection is closed before handshake
+- Issue #28990: Fix SSL hanging if connection is closed before handshake
completed.
(Patch by HoHo-Ho)