]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Removed confusing reference to sys (GH-31638)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 8 Mar 2022 16:04:56 +0000 (08:04 -0800)
committerGitHub <noreply@github.com>
Tue, 8 Mar 2022 16:04:56 +0000 (08:04 -0800)
(cherry picked from commit 28f84c72b6cee145f9c00e9b999656e9a2517e49)

Co-authored-by: David Gilbertson <gilbertson.david@gmail.com>
Doc/reference/import.rst

index 9834f957ea9f64757bb7b8a94cefb18de9498b2b..c01535d8049dfb47f7a4f600b966dede06c7e5e2 100644 (file)
@@ -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