]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Removed confusing reference to sys (GH-31638)
authorDavid Gilbertson <gilbertson.david@gmail.com>
Tue, 8 Mar 2022 15:43:27 +0000 (02:43 +1100)
committerGitHub <noreply@github.com>
Tue, 8 Mar 2022 15:43:27 +0000 (07:43 -0800)
Doc/reference/import.rst

index 69e2a94727449783c739c959dfb70dc4ff993d96..66737c698ae90d330bd91362f19d621f5db630b6 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