]> granicus.if.org Git - python/commitdiff
Add note to asyncore/asynchat recommending asyncio for new code.
authorGuido van Rossum <guido@dropbox.com>
Fri, 22 Nov 2013 19:57:35 +0000 (11:57 -0800)
committerGuido van Rossum <guido@dropbox.com>
Fri, 22 Nov 2013 19:57:35 +0000 (11:57 -0800)
Doc/library/asynchat.rst
Doc/library/asyncore.rst

index 55c61d7e68f35b27e6c2e62083e80615e8d4180e..7050f0c5a3bfcd53ff920740d99c7499e9521d12 100644 (file)
@@ -10,6 +10,9 @@
 
 --------------
 
+Note: This module exists for backwards compatibility only.  For new code we
+recommend using :module:`asyncio`.
+
 This module builds on the :mod:`asyncore` infrastructure, simplifying
 asynchronous clients and servers and making it easier to handle protocols
 whose elements are terminated by arbitrary strings, or are of variable length.
index 8f494d0e58a50300208ffc8dc8bd590257b63ec3..d0a30f8ae6c8db03565b36d9712a3f1f545f98dc 100644 (file)
@@ -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.