Issue 25002: Deprecate asyncore/asynchat. Patch by Mariatta.

This commit is contained in:
Guido van Rossum 2016-10-25 08:49:13 -07:00
parent 1faf9025b5
commit 16591f440d
4 changed files with 15 additions and 0 deletions

View file

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