summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2014-09-06 02:28:40 (GMT)
committerGuido van Rossum <guido@python.org>2014-09-06 02:28:40 (GMT)
commit779d453fc9a60bbeaa8ff22c77fb7c66c8c6c584 (patch)
treef70d1ddd998bec4d562504ed16f21a4f3f5cd719
parentcde69cdb810de3316805d007673e4b1a0f34b79b (diff)
downloadcpython-779d453fc9a60bbeaa8ff22c77fb7c66c8c6c584.zip
cpython-779d453fc9a60bbeaa8ff22c77fb7c66c8c6c584.tar.gz
cpython-779d453fc9a60bbeaa8ff22c77fb7c66c8c6c584.tar.bz2
Add PEP-411-compliant note about asyncio being provisional. Fixes issue #22346.
-rw-r--r--Doc/library/asyncio.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/Doc/library/asyncio.rst b/Doc/library/asyncio.rst
index 90a152b..fb1d659 100644
--- a/Doc/library/asyncio.rst
+++ b/Doc/library/asyncio.rst
@@ -4,6 +4,13 @@
.. module:: asyncio
:synopsis: Asynchronous I/O, event loop, coroutines and tasks.
+.. note::
+
+ The asyncio package has been included in the standard library on a
+ :term:`provisional basis <provisional package>`. Backwards incompatible
+ changes (up to and including removal of the module) may occur if deemed
+ necessary by the core developers.
+
.. versionadded:: 3.4
**Source code:** :source:`Lib/asyncio/`