summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorElvis Pranskevichus <elvis@magic.io>2018-05-29 22:21:44 (GMT)
committerYury Selivanov <yury@magic.io>2018-05-29 22:21:44 (GMT)
commitf9aeca2085464838f04bf13f816a1f861d43541f (patch)
treefcd34b75a6b592f1c09df5e1d3fa7369f044e557 /Misc
parente2b340ab4196e1beb902327f503574b5d7369185 (diff)
downloadcpython-f9aeca2085464838f04bf13f816a1f861d43541f.zip
cpython-f9aeca2085464838f04bf13f816a1f861d43541f.tar.gz
cpython-f9aeca2085464838f04bf13f816a1f861d43541f.tar.bz2
bpo-23859: Document that asyncio.wait() does not cancel its futures (#7217)
Unlike `asyncio.wait_for()`, `asyncio.wait()` does not cancel the passed futures when a timeout accurs.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Documentation/2018-05-29-16-02-31.bpo-23859.E5gba1.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Documentation/2018-05-29-16-02-31.bpo-23859.E5gba1.rst b/Misc/NEWS.d/next/Documentation/2018-05-29-16-02-31.bpo-23859.E5gba1.rst
new file mode 100644
index 0000000..b372faa
--- /dev/null
+++ b/Misc/NEWS.d/next/Documentation/2018-05-29-16-02-31.bpo-23859.E5gba1.rst
@@ -0,0 +1 @@
+Document that `asyncio.wait()` does not cancel its futures on timeout.