summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDavid Gilbertson <gilbertson.david@gmail.com>2022-03-08 15:43:27 (GMT)
committerGitHub <noreply@github.com>2022-03-08 15:43:27 (GMT)
commit28f84c72b6cee145f9c00e9b999656e9a2517e49 (patch)
tree245a8e081bac758760e174459a2783cc3a004b80 /Doc
parent5081e78efde901556398615eb477c63c836686e5 (diff)
downloadcpython-28f84c72b6cee145f9c00e9b999656e9a2517e49.zip
cpython-28f84c72b6cee145f9c00e9b999656e9a2517e49.tar.gz
cpython-28f84c72b6cee145f9c00e9b999656e9a2517e49.tar.bz2
Removed confusing reference to sys (GH-31638)
Diffstat (limited to 'Doc')
-rw-r--r--Doc/reference/import.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst
index 69e2a94..66737c6 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