From: Guido van Rossum Date: Tue, 29 Sep 2015 19:00:01 +0000 (-0700) Subject: Also rewrote the guts of asyncio.Semaphore (patch by manipopopo). (Merge 3.4->3.5.) X-Git-Tag: v3.5.1rc1~243 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=28d982dfc53eea290b898b30ab8feab8d7e55552;p=python Also rewrote the guts of asyncio.Semaphore (patch by manipopopo). (Merge 3.4->3.5.) --- 28d982dfc53eea290b898b30ab8feab8d7e55552 diff --cc Misc/NEWS index 5a7784466c,48f5c4e436..a2c4020046 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -24,11 -81,9 +24,12 @@@ Librar - Issue #25034: Fix string.Formatter problem with auto-numbering and nested format_specs. Patch by Anthon van der Neut. - - Issue #25233: Rewrite the guts of asyncio.Queue to be more understandable and correct. + - Issue #25233: Rewrite the guts of asyncio.Queue and + asyncio.Semaphore to be more understandable and correct. +- Issue #25203: Failed readline.set_completer_delims() no longer left the + module in inconsistent state. + - Issue #23600: Default implementation of tzinfo.fromutc() was returning wrong results in some cases.