Issue #25002: Back out asyncore/asynchat deprecation.

This commit is contained in:
Guido van Rossum 2016-10-25 18:42:51 -07:00
parent 3dca62440c
commit 66078ac5d0
2 changed files with 0 additions and 9 deletions

View file

@ -46,13 +46,8 @@
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

View file

@ -60,10 +60,6 @@
_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: