mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-46777: Fix incorrect use of directives in asyncio documentation (GH-31388)
This commit is contained in:
parent
d85121660e
commit
2923d87ca2
7 changed files with 83 additions and 182 deletions
|
@ -36,6 +36,9 @@ Queue
|
|||
the queue is always known and can be returned by calling the
|
||||
:meth:`qsize` method.
|
||||
|
||||
.. versionchanged:: 3.10
|
||||
Removed the *loop* parameter.
|
||||
|
||||
|
||||
This class is :ref:`not thread safe <asyncio-multithreading>`.
|
||||
|
||||
|
@ -105,13 +108,6 @@ 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
|
||||
==============
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue