PEP 8: minor grammar improvement (#926)

From 
> does not import objects whose name starts with an underscore.
into
> does not import objects whose names start with an underscore.

Closes https://github.com/python/pythondotorg/issues/1387
This commit is contained in:
Mariatta 2019-03-13 10:48:04 -07:00 committed by Guido van Rossum
parent d75c78a189
commit 2f8f1ec0ba
1 changed files with 1 additions and 1 deletions

View File

@ -810,7 +810,7 @@ underscores are recognized (these can generally be combined with any
case convention): case convention):
- ``_single_leading_underscore``: weak "internal use" indicator. - ``_single_leading_underscore``: weak "internal use" indicator.
E.g. ``from M import *`` does not import objects whose name starts E.g. ``from M import *`` does not import objects whose names start
with an underscore. with an underscore.
- ``single_trailing_underscore_``: used by convention to avoid - ``single_trailing_underscore_``: used by convention to avoid