From: Guido van Rossum Date: Mon, 28 Sep 2015 23:50:38 +0000 (-0700) Subject: Correct Misc/NEWS about asyncio.Queue rewrite. X-Git-Tag: v3.5.1rc1~251^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9af30ac6691192f6328753b3b8809fb40199df1b;p=python Correct Misc/NEWS about asyncio.Queue rewrite. --- diff --git a/Misc/NEWS b/Misc/NEWS index 3b76bbdf9a..ef06dab082 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -75,13 +75,10 @@ Core and Builtins - Issue #21354: PyCFunction_New function is exposed by python DLL again. -- Issue #23812: Fix asyncio.Queue.get() to avoid loosing items on cancellation. - Patch by Gustavo J. A. M. Carneiro. - Library ------- -- Issue #25233: Rewrite the guts of Queue to be more understandable and correct. +- Issue #25233: Rewrite the guts of asyncio.Queue to be more understandable and correct. - Issue #23600: Default implementation of tzinfo.fromutc() was returning wrong results in some cases.