summaryrefslogtreecommitdiffstats
path: root/Python/stdlib_module_names.h
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-11-15 23:29:17 (GMT)
committerGitHub <noreply@github.com>2021-11-15 23:29:17 (GMT)
commit9bf2cbc4c498812e14f20d86acb61c53928a5a57 (patch)
tree3967d6f8ac254b8ed51ee8ab26eb94cb593223f9 /Python/stdlib_module_names.h
parent3352834f59531dfa42dbef00ada4fb95ded2ae3a (diff)
downloadcpython-9bf2cbc4c498812e14f20d86acb61c53928a5a57.zip
cpython-9bf2cbc4c498812e14f20d86acb61c53928a5a57.tar.gz
cpython-9bf2cbc4c498812e14f20d86acb61c53928a5a57.tar.bz2
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 'Python/stdlib_module_names.h')
-rw-r--r--Python/stdlib_module_names.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/stdlib_module_names.h b/Python/stdlib_module_names.h
index 754fa94..7d42108 100644
--- a/Python/stdlib_module_names.h
+++ b/Python/stdlib_module_names.h
@@ -96,9 +96,7 @@ static const char* _Py_stdlib_module_names[] = {
"argparse",
"array",
"ast",
-"asynchat",
"asyncio",
-"asyncore",
"atexit",
"audioop",
"base64",
@@ -242,7 +240,6 @@ static const char* _Py_stdlib_module_names[] = {
"shutil",
"signal",
"site",
-"smtpd",
"smtplib",
"sndhdr",
"socket",