diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2014-09-06 09:43:06 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2014-09-06 09:43:06 (GMT) |
commit | af117ed3d74bf0aa8b75c73155bdd63673133c8f (patch) | |
tree | ad925927b97dbbd92f8a3bce860a7f49fba078cc /Doc | |
parent | 1ff32a916908b0101f00f5caa7d8469638fba541 (diff) | |
download | cpython-af117ed3d74bf0aa8b75c73155bdd63673133c8f.zip cpython-af117ed3d74bf0aa8b75c73155bdd63673133c8f.tar.gz cpython-af117ed3d74bf0aa8b75c73155bdd63673133c8f.tar.bz2 |
Issue #22346: also include asyncio PEP 411 notice in 3.4
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asyncio.rst | 7 |
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/` |