aboutsummaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2021-01-28 00:03:23 +0100
committerGitHub <noreply@github.com>2021-01-28 00:03:23 +0100
commit64fc105b2d2faaeadd1026d2417b83915af6622f (patch)
treeba81a4d0b502e23b7dcb032ba793d8e767b62e86 /Doc
parentbpo-42979: Enhance abstract.c assertions checking slot result (GH-24352) (diff)
downloadcpython-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 'Doc')
-rw-r--r--Doc/library/sys.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst
index 0219ae8ceb6..80b30d01f91 100644
--- a/Doc/library/sys.rst
+++ b/Doc/library/sys.rst
@@ -1575,9 +1575,10 @@ always available.
All module kinds are listed: pure Python, built-in, frozen and extension
modules. Test modules are excluded.
- For packages, only sub-packages are listed, not sub-modules. For example,
- ``concurrent`` package and ``concurrent.futures`` sub-package are listed,
- but not ``concurrent.futures.base`` sub-module.
+ For packages, only the main package is listed: sub-packages and sub-modules
+ are not listed. For example, the ``email`` package is listed, but the
+ ``email.mime`` sub-package and the ``email.message`` sub-module are not
+ listed.
See also the :attr:`sys.builtin_module_names` list.