summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2015-09-29 18:54:45 (GMT)
committerGuido van Rossum <guido@python.org>2015-09-29 18:54:45 (GMT)
commitd455a50773eb1f4531882a0b99ff7a253ad1d41e (patch)
tree28211b4643e499edddd219416ba19a5a93cfa5d0 /Misc
parentd94c1b92ed6420044d38b59371fd934b9ca9a79f (diff)
downloadcpython-d455a50773eb1f4531882a0b99ff7a253ad1d41e.zip
cpython-d455a50773eb1f4531882a0b99ff7a253ad1d41e.tar.gz
cpython-d455a50773eb1f4531882a0b99ff7a253ad1d41e.tar.bz2
Also rewrote the guts of asyncio.Semaphore (patch by manipopopo).
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0a2411d..48f5c4e4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -81,7 +81,8 @@ Library
- 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 #23600: Default implementation of tzinfo.fromutc() was returning
wrong results in some cases.