Removed confusing reference to sys (GH-31638)

This commit is contained in:
David Gilbertson 2022-03-09 02:43:27 +11:00 committed by GitHub
parent 5081e78efd
commit 28f84c72b6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View 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