From 66078ac5d022cf68f5fcd8875649e4e6527648c8 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 25 Oct 2016 18:42:51 -0700 Subject: Issue #25002: Back out asyncore/asynchat deprecation. --- Lib/asynchat.py | 5 ----- 1 file changed, 5 deletions(-) (limited to 'Lib/asynchat.py') diff --git a/Lib/asynchat.py b/Lib/asynchat.py index fede592126..fc1146adbb 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 -- cgit v1.2.1