diff options
author | Victor Stinner <vstinner@python.org> | 2021-01-28 00:03:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-28 00:03:23 +0100 |
commit | 64fc105b2d2faaeadd1026d2417b83915af6622f (patch) | |
tree | ba81a4d0b502e23b7dcb032ba793d8e767b62e86 /Python | |
parent | bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352) (diff) | |
download | cpython-64fc105b2d2faaeadd1026d2417b83915af6622f.tar.gz cpython-64fc105b2d2faaeadd1026d2417b83915af6622f.tar.bz2 cpython-64fc105b2d2faaeadd1026d2417b83915af6622f.zip |
bpo-42955: Remove sub-packages from sys.stdlib_module_names (GH-24353)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/stdlib_module_names.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Python/stdlib_module_names.h b/Python/stdlib_module_names.h index 8c430821d64..01aa6753e42 100644 --- a/Python/stdlib_module_names.h +++ b/Python/stdlib_module_names.h @@ -117,7 +117,6 @@ static const char* _Py_stdlib_module_names[] = { "colorsys", "compileall", "concurrent", -"concurrent.futures", "configparser", "contextlib", "contextvars", @@ -126,7 +125,6 @@ static const char* _Py_stdlib_module_names[] = { "crypt", "csv", "ctypes", -"ctypes.macholib", "curses", "dataclasses", "datetime", @@ -135,13 +133,10 @@ static const char* _Py_stdlib_module_names[] = { "difflib", "dis", "distutils", -"distutils.command", "doctest", "email", -"email.mime", "encodings", "ensurepip", -"ensurepip._bundled", "enum", "errno", "faulthandler", @@ -178,8 +173,6 @@ static const char* _Py_stdlib_module_names[] = { "json", "keyword", "lib2to3", -"lib2to3.fixes", -"lib2to3.pgen2", "linecache", "locale", "logging", @@ -194,7 +187,6 @@ static const char* _Py_stdlib_module_names[] = { "msilib", "msvcrt", "multiprocessing", -"multiprocessing.dummy", "netrc", "nis", "nntplib", @@ -304,10 +296,6 @@ static const char* _Py_stdlib_module_names[] = { "wsgiref", "xdrlib", "xml", -"xml.dom", -"xml.etree", -"xml.parsers", -"xml.sax", "xmlrpc", "zipapp", "zipfile", |