[Python-checkins] cpython: Add note to asyncore/asynchat recommending asyncio for new code.

guido.van.rossum python-checkins at python.org
Fri Nov 22 21:02:14 CET 2013


http://hg.python.org/cpython/rev/db6ae01a5f7f
changeset:   87364:db6ae01a5f7f
user:        Guido van Rossum <guido at dropbox.com>
date:        Fri Nov 22 11:57:35 2013 -0800
summary:
  Add note to asyncore/asynchat recommending asyncio for new code.

files:
  Doc/library/asynchat.rst |  3 +++
  Doc/library/asyncore.rst |  3 +++
  2 files changed, 6 insertions(+), 0 deletions(-)


diff --git a/Doc/library/asynchat.rst b/Doc/library/asynchat.rst
--- a/Doc/library/asynchat.rst
+++ b/Doc/library/asynchat.rst
@@ -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.
diff --git a/Doc/library/asyncore.rst b/Doc/library/asyncore.rst
--- 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.
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list