diff options
author | Victor Stinner <vstinner@python.org> | 2021-11-16 00:29:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 00:29:17 +0100 |
commit | 9bf2cbc4c498812e14f20d86acb61c53928a5a57 (patch) | |
tree | 3967d6f8ac254b8ed51ee8ab26eb94cb593223f9 /Lib/test/test_ssl.py | |
parent | 3352834f59531dfa42dbef00ada4fb95ded2ae3a (diff) | |
download | cpython-9bf2cbc4c498812e14f20d86acb61c53928a5a57.tar.gz cpython-9bf2cbc4c498812e14f20d86acb61c53928a5a57.zip |
bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)
Remove the asyncore and asynchat modules, deprecated in Python
3.6: use the asyncio module instead.
Remove the smtpd module, deprecated in Python 3.6: the aiosmtpd
module can be used instead, it is based on asyncio.
* Remove asyncore, asynchat and smtpd documentation
* Remove test_asyncore, test_asynchat and test_smtpd
* Rename Lib/asynchat.py to Lib/test/support/_asynchat.py
* Rename Lib/asyncore.py to Lib/test/support/_asyncore.py
* Rename Lib/smtpd.py to Lib/test/support/_smtpd.py
* Remove DeprecationWarning from private _asyncore, _asynchat and
_smtpd modules
* _smtpd: remove deprecated properties
Diffstat (limited to 'Lib/test/test_ssl.py')
-rw-r--r-- | Lib/test/test_ssl.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py index 981e2fe82ee..88eeb07afa0 100644 --- a/Lib/test/test_ssl.py +++ b/Lib/test/test_ssl.py @@ -4,6 +4,7 @@ import sys import unittest import unittest.mock from test import support +from test.support import _asyncore as asyncore from test.support import import_helper from test.support import os_helper from test.support import socket_helper @@ -30,10 +31,6 @@ try: except ImportError: ctypes = None -import warnings -with warnings.catch_warnings(): - warnings.simplefilter('ignore', DeprecationWarning) - import asyncore ssl = import_helper.import_module("ssl") import _ssl |