summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-04-29 19:26:00 -0700
committerGitHub <noreply@github.com>2019-04-29 19:26:00 -0700
commit4b5340bb634be2ee2a40242cdf4e3f7a0b6c757a (patch)
tree85ff572f8c3526be03352a6f95586306738c8845 /Doc
parent52a5b71063af68c42b048095c4e555e93257f151 (diff)
downloadcpython-git-4b5340bb634be2ee2a40242cdf4e3f7a0b6c757a.tar.gz
closes bpo-35329: Change 'Package' to 'package' in accordance with PEP8. (GH-13008)
(cherry picked from commit ee0309f3d83ab9ffa02542bcf45ece84f4fb265e) Co-authored-by: Utkarsh Gupta <guptautkarsh2102@gmail.com>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/tutorial/modules.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst
index fd594fd97a..d0a68faa2e 100644
--- a/Doc/tutorial/modules.rst
+++ b/Doc/tutorial/modules.rst
@@ -523,7 +523,7 @@ Although certain modules are designed to export only names that follow certain
patterns when you use ``import *``, it is still considered bad practice in
production code.
-Remember, there is nothing wrong with using ``from Package import
+Remember, there is nothing wrong with using ``from package import
specific_submodule``! In fact, this is the recommended notation unless the
importing module needs to use submodules with the same name from different
packages.