summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-09-28 23:50:38 (GMT)
committerGuido van Rossum <guido@python.org>2015-09-28 23:50:38 (GMT)
commit9af30ac6691192f6328753b3b8809fb40199df1b (patch)
tree3efe3c1aa7542ad016b0d23a87b721100f10a940 /Misc
parent99f96c54517b8a130b2c7080e9b7ef93e166f77e (diff)
downloadcpython-9af30ac6691192f6328753b3b8809fb40199df1b.zip
cpython-9af30ac6691192f6328753b3b8809fb40199df1b.tar.gz
cpython-9af30ac6691192f6328753b3b8809fb40199df1b.tar.bz2
Correct Misc/NEWS about asyncio.Queue rewrite.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 1 insertions, 4 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3b76bbd..ef06dab 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.