diff options
author | Guido van Rossum <guido@dropbox.com> | 2013-11-22 19:57:35 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2013-11-22 19:57:35 (GMT) |
commit | aa407758176affde0c81301e3c8856dd73e6b1c3 (patch) | |
tree | 2dd1a82df9cde200adb04debc05b28166f324a4d /Doc/library/asyncore.rst | |
parent | 5467da860cc0884b0ce2f2a0456f5955845d5450 (diff) | |
download | cpython-aa407758176affde0c81301e3c8856dd73e6b1c3.zip cpython-aa407758176affde0c81301e3c8856dd73e6b1c3.tar.gz cpython-aa407758176affde0c81301e3c8856dd73e6b1c3.tar.bz2 |
Add note to asyncore/asynchat recommending asyncio for new code.
Diffstat (limited to 'Doc/library/asyncore.rst')
-rw-r--r-- | Doc/library/asyncore.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst index 8f494d0..d0a30f8 100644 --- a/Doc/library/asyncore.rst +++ b/Doc/library/asyncore.rst @@ -13,6 +13,9 @@ -------------- +Note: This module exists for backwards compatibility only. For new code we +recommend using :module:`asyncio`. + This module provides the basic infrastructure for writing asynchronous socket service clients and servers. |