bpo-40499: Mention that asyncio.wait() needs a non-empty aws set (GH-19900)
A similar formulation was added in bpo-21596 (db74d982d4
) but was lost in bpo-33649 (3faaa8857a
).
This commit is contained in:
parent
f25fb6ebfe
commit
9d74658f0a
|
@ -498,6 +498,8 @@ Waiting Primitives
|
|||
set concurrently and block until the condition specified
|
||||
by *return_when*.
|
||||
|
||||
The *aws* set must not be empty.
|
||||
|
||||
Returns two sets of Tasks/Futures: ``(done, pending)``.
|
||||
|
||||
Usage::
|
||||
|
|
|
@ -1443,6 +1443,7 @@ Mike Romberg
|
|||
Armin Ronacher
|
||||
Case Roole
|
||||
Timothy Roscoe
|
||||
Joel Rosdahl
|
||||
Erik Rose
|
||||
Mark Roseman
|
||||
Josh Rosenberg
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Mention that :func:`asyncio.wait` requires a non-empty set of awaitables.
|
Loading…
Reference in New Issue