aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/asynchat.py')
-rw-r--r--Lib/asynchat.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/Lib/asynchat.py b/Lib/asynchat.py
index fede592126b..fc1146adbb1 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