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: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6b1031b76e9344665db951cdef39aa8f2e186a2;p=thirdparty%2FPython%2Fcpython.git Also rewrote the guts of asyncio.Semaphore (patch by manipopopo). (Merge 3.5->3.6.) --- a6b1031b76e9344665db951cdef39aa8f2e186a2 diff --cc Misc/NEWS index 5fb3be1617f5,a2c402004635..861b83e22e40 --- 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.