]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
closes bpo-35329: Change 'Package' to 'package' in accordance with PEP8. (GH-13008)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Tue, 30 Apr 2019 02:25:35 +0000 (19:25 -0700)
committerGitHub <noreply@github.com>
Tue, 30 Apr 2019 02:25:35 +0000 (19:25 -0700)
(cherry picked from commit ee0309f3d83ab9ffa02542bcf45ece84f4fb265e)

Co-authored-by: Utkarsh Gupta <guptautkarsh2102@gmail.com>
Doc/tutorial/modules.rst

index 042d23306bdd32ef4a1b1edb2448b7af8365fcce..f767bb69c112fd4bb2bfec82985994f005abbdd8 100644 (file)
@@ -518,7 +518,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.