summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-06-17 21:36:21 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-06-17 21:36:21 (GMT)
commit66dc6b0f5355857ea73f59e6eb2066bf6604d322 (patch)
tree2b0623f93acf592dc56417b44d8afefba4ef9d48 /Misc
parent14fbe72777b5250ad3ca9867916a7740eebad9bb (diff)
downloadcpython-66dc6b0f5355857ea73f59e6eb2066bf6604d322.zip
cpython-66dc6b0f5355857ea73f59e6eb2066bf6604d322.tar.gz
cpython-66dc6b0f5355857ea73f59e6eb2066bf6604d322.tar.bz2
Issue #21723: asyncio.Queue: support any type of number (ex: float) for the
maximum size. Patch written by Vajrasky Kok.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index ec8b4d9..6e333a4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #21723: asyncio.Queue: support any type of number (ex: float) for the
+ maximum size. Patch written by Vajrasky Kok.
+
- Issue #21326: Add a new is_closed() method to asyncio.BaseEventLoop.
run_forever() and run_until_complete() methods of asyncio.BaseEventLoop now
raise an exception if the event loop was closed.