From: David Gilbertson Date: Tue, 8 Mar 2022 15:43:27 +0000 (+1100) Subject: Removed confusing reference to sys (GH-31638) X-Git-Tag: v3.11.0a7~307 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=28f84c72b6cee145f9c00e9b999656e9a2517e49;p=thirdparty%2FPython%2Fcpython.git Removed confusing reference to sys (GH-31638) --- diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index 69e2a9472744..66737c698ae9 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -84,9 +84,9 @@ considered a package. All modules have a name. Subpackage names are separated from their parent package name by a dot, akin to Python's standard attribute access syntax. Thus -you might have a module called :mod:`sys` and a package called :mod:`email`, -which in turn has a subpackage called :mod:`email.mime` and a module within -that subpackage called :mod:`email.mime.text`. +you might have a package called :mod:`email`, which in turn has a subpackage +called :mod:`email.mime` and a module within that subpackage called +:mod:`email.mime.text`. Regular packages