diff options
author | Guido van Rossum <guido@python.org> | 2016-10-25 15:49:13 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2016-10-25 15:49:13 (GMT) |
commit | 16591f440d650f77c841a3245785e2423a50249f (patch) | |
tree | 0b8d6ec68796387e160c5e0c06c65ecda84ba484 /Doc | |
parent | 1faf9025b5d599d66acac0f33d1500a2ff386368 (diff) | |
download | cpython-16591f440d650f77c841a3245785e2423a50249f.zip cpython-16591f440d650f77c841a3245785e2423a50249f.tar.gz cpython-16591f440d650f77c841a3245785e2423a50249f.tar.bz2 |
Issue 25002: Deprecate asyncore/asynchat. Patch by Mariatta.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/asynchat.rst | 3 | ||||
-rw-r--r-- | Doc/library/asyncore.rst | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/asynchat.rst b/Doc/library/asynchat.rst index e02360c..9e51416 100644 --- a/Doc/library/asynchat.rst +++ b/Doc/library/asynchat.rst @@ -9,6 +9,9 @@ **Source code:** :source:`Lib/asynchat.py` +.. deprecated:: 3.6 + Please use :mod:`asyncio` instead. + -------------- .. note:: diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst index c838be7..11d3616 100644 --- a/Doc/library/asyncore.rst +++ b/Doc/library/asyncore.rst @@ -12,6 +12,9 @@ **Source code:** :source:`Lib/asyncore.py` +.. deprecated:: 3.6 + Please use :mod:`asyncio` instead. + -------------- .. note:: |