diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-03-08 16:04:56 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-08 16:04:56 (GMT) |
commit | ef54c4df8283349603406a9274580556e7cc4bef (patch) | |
tree | a288c14931c58d149af08a08ccbe7a3535cf5804 | |
parent | 5d2b9c9fe45643ba379277aea883276165499117 (diff) | |
download | cpython-ef54c4df8283349603406a9274580556e7cc4bef.zip cpython-ef54c4df8283349603406a9274580556e7cc4bef.tar.gz cpython-ef54c4df8283349603406a9274580556e7cc4bef.tar.bz2 |
Removed confusing reference to sys (GH-31638)
(cherry picked from commit 28f84c72b6cee145f9c00e9b999656e9a2517e49)
Co-authored-by: David Gilbertson <gilbertson.david@gmail.com>
-rw-r--r-- | Doc/reference/import.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index 9834f95..c01535d 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 |