From: Guido van Rossum Date: Tue, 29 Sep 2015 19:01:55 +0000 (-0700) Subject: Also rewrote the guts of asyncio.Semaphore (patch by manipopopo). (Merge 3.5->3.6.) X-Git-Tag: v3.6.0a1~1394 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a6b1031b76e9344665db951cdef39aa8f2e186a2;p=python Also rewrote the guts of asyncio.Semaphore (patch by manipopopo). (Merge 3.5->3.6.) --- a6b1031b76e9344665db951cdef39aa8f2e186a2 diff --cc Misc/NEWS index 5fb3be1617,a2c4020046..861b83e22e --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -193,8 -24,12 +193,9 @@@ 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.