From: Guido van Rossum Date: Wed, 26 Oct 2016 01:42:51 +0000 (-0700) Subject: Issue #25002: Back out asyncore/asynchat deprecation. X-Git-Tag: v3.6.0b3~47 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=66078ac5d022cf68f5fcd8875649e4e6527648c8;p=thirdparty%2FPython%2Fcpython.git Issue #25002: Back out asyncore/asynchat deprecation. --- diff --git a/Lib/asynchat.py b/Lib/asynchat.py index fede592126b9..fc1146adbb10 100644 --- a/Lib/asynchat.py +++ b/Lib/asynchat.py @@ -46,13 +46,8 @@ method) up to the terminator, and then control will be returned to you - by calling your self.found_terminator() method. """ import asyncore -import warnings - from collections import deque -warnings.warn( - 'asynchat module is deprecated in 3.6. Use asyncio instead.', - PendingDeprecationWarning, stacklevel=2) class async_chat(asyncore.dispatcher): """This is an abstract class. You must derive from this class, and add diff --git a/Lib/asyncore.py b/Lib/asyncore.py index f17b31ad40e4..705e40681303 100644 --- a/Lib/asyncore.py +++ b/Lib/asyncore.py @@ -60,10 +60,6 @@ from errno import EALREADY, EINPROGRESS, EWOULDBLOCK, ECONNRESET, EINVAL, \ _DISCONNECTED = frozenset({ECONNRESET, ENOTCONN, ESHUTDOWN, ECONNABORTED, EPIPE, EBADF}) -warnings.warn( - 'asyncore module is deprecated in 3.6. Use asyncio instead.', - PendingDeprecationWarning, stacklevel=2) - try: socket_map except NameError: