summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorLaurie O <laurie_opperman@hotmail.com>2024-04-06 14:27:13 (GMT)
committerGitHub <noreply@github.com>2024-04-06 14:27:13 (GMT)
commitdf4d84c3cdca572f1be8f5dc5ef8ead5351b51fb (patch)
treedbbb1036001b8caccf3ff0a0b436aee47f96fff5 /Doc/whatsnew
parent1d3225ae056245da75e4a443ccafcc8f4f982cf2 (diff)
downloadcpython-df4d84c3cdca572f1be8f5dc5ef8ead5351b51fb.zip
cpython-df4d84c3cdca572f1be8f5dc5ef8ead5351b51fb.tar.gz
cpython-df4d84c3cdca572f1be8f5dc5ef8ead5351b51fb.tar.bz2
gh-96471: Add asyncio queue shutdown (#104228)
Co-authored-by: Duprat <yduprat@gmail.com>
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r--Doc/whatsnew/3.13.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.13.rst b/Doc/whatsnew/3.13.rst
index e31f0c5..c785d4c 100644
--- a/Doc/whatsnew/3.13.rst
+++ b/Doc/whatsnew/3.13.rst
@@ -296,6 +296,10 @@ asyncio
with the tasks being completed.
(Contributed by Justin Arthur in :gh:`77714`.)
+* Add :meth:`asyncio.Queue.shutdown` (along with
+ :exc:`asyncio.QueueShutDown`) for queue termination.
+ (Contributed by Laurie Opperman in :gh:`104228`.)
+
base64
------