diff options
author | Laurie O <laurie_opperman@hotmail.com> | 2024-04-06 14:27:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-06 14:27:13 (GMT) |
commit | df4d84c3cdca572f1be8f5dc5ef8ead5351b51fb (patch) | |
tree | dbbb1036001b8caccf3ff0a0b436aee47f96fff5 /Doc/whatsnew | |
parent | 1d3225ae056245da75e4a443ccafcc8f4f982cf2 (diff) | |
download | cpython-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.rst | 4 |
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 ------ |