summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2017-01-17 06:42:37 (GMT)
committerRaymond Hettinger <python@rcn.com>2017-01-17 06:42:37 (GMT)
commit80490525e0e9c08860b0de0c416dbe71c6593af7 (patch)
treeaabf82fd00fdbfe92a1d416223c5d9849b61c5df /Misc/NEWS
parenta105dd3dc0b054f0d7977e19b682a0016b67790f (diff)
downloadcpython-80490525e0e9c08860b0de0c416dbe71c6593af7.zip
cpython-80490525e0e9c08860b0de0c416dbe71c6593af7.tar.gz
cpython-80490525e0e9c08860b0de0c416dbe71c6593af7.tar.bz2
Issue #29011: Fix an important omission by adding Deque to the typing module.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS20
1 files changed, 16 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9a5e729..7e21d37 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -2,6 +2,18 @@
Python News
+++++++++++
+What's New in Python 3.5.4?
+===========================
+
+Core and Builtins
+-----------------
+
+Library
+-------
+
+- Issue #29011: Fix an important omission by adding Deque to the typing module.
+
+
What's New in Python 3.5.3?
===========================
@@ -528,17 +540,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
@@ -553,7 +565,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)