-
Notifications
You must be signed in to change notification settings - Fork 603
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
possible grammar problem on PEP8 page #1387
Comments
Thank you. I think this issue is better raised at the PEPs repo at https://github.com/python/peps |
Mariatta
added a commit
to python/peps
that referenced
this issue
Mar 13, 2019
From > does not import objects whose name starts with an underscore. into > does not import objects whose names start with an underscore. Closes python/pythondotorg#1387
gvanrossum
pushed a commit
to python/peps
that referenced
this issue
Mar 13, 2019
From > does not import objects whose name starts with an underscore. into > does not import objects whose names start with an underscore. Closes python/pythondotorg#1387
Please close now. |
Looks good; thanks for fixing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the section here:
https://www.python.org/dev/peps/pep-0008/#descriptive-naming-styles
it says:
_single_leading_underscore: weak "internal use" indicator. E.g. from M import * does not import objects whose name starts with an underscore.
I would change it to:
_single_leading_underscore: weak "internal use" indicator. E.g. from M import * does not import objects whose names start with an underscore.
The text was updated successfully, but these errors were encountered: