diff options
author | Raymond Hettinger <python@rcn.com> | 2017-01-17 06:42:37 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2017-01-17 06:42:37 (GMT) |
commit | 80490525e0e9c08860b0de0c416dbe71c6593af7 (patch) | |
tree | aabf82fd00fdbfe92a1d416223c5d9849b61c5df /Misc | |
parent | a105dd3dc0b054f0d7977e19b682a0016b67790f (diff) | |
download | cpython-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')
-rw-r--r-- | Misc/NEWS | 20 |
1 files changed, 16 insertions, 4 deletions
@@ -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) |