diff options
author | Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> | 2021-05-26 21:59:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 21:59:34 (GMT) |
commit | d8fd8c8568cbc2f53c1abeda3596a89a46f0e3d7 (patch) | |
tree | 5aa6a38c5e7210ef1a5f5305e683f65780642aba /Doc/library/asyncio-queue.rst | |
parent | f6fbdb90ee450ad693f7a7809035d0dc968f98b7 (diff) | |
download | cpython-d8fd8c8568cbc2f53c1abeda3596a89a46f0e3d7.zip cpython-d8fd8c8568cbc2f53c1abeda3596a89a46f0e3d7.tar.gz cpython-d8fd8c8568cbc2f53c1abeda3596a89a46f0e3d7.tar.bz2 |
bpo-42392: [docs] Add deprecated-removed loop labels for asyncio (GH-26357)
* Add deprecated-removed loop labels for all reelvant functions/classes in asyncio
Diffstat (limited to 'Doc/library/asyncio-queue.rst')
-rw-r--r-- | Doc/library/asyncio-queue.rst | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/asyncio-queue.rst b/Doc/library/asyncio-queue.rst index 289ad1b..e6f26bb 100644 --- a/Doc/library/asyncio-queue.rst +++ b/Doc/library/asyncio-queue.rst @@ -105,6 +105,13 @@ Queue Raises :exc:`ValueError` if called more times than there were items placed in the queue. + .. deprecated-removed:: 3.8 3.10 + + The ``loop`` parameter. This function has been implicitly getting the + current running loop since 3.7. See + :ref:`What's New in 3.10's Removed section <whatsnew310-removed>` + for more information. + Priority Queue ============== |