-
-
Notifications
You must be signed in to change notification settings - Fork 32.1k
Fix "Python" casing in a few places #9001
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
Fix "Python" casing in a few places #9001
Conversation
LGTM. Are there cases in comments and docstrings? Changes in docstrings or printed messages can break third-party tests, so they should be made in a separate issue and merged only into master. It may be worth to open an issue on the tracker for attracting attention of other possible reviewers. |
@@ -1,8 +1,8 @@ | |||
:mod:`zipapp` --- Manage executable python zip archives | |||
:mod:`zipapp` --- Manage executable Python zip archives |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It may be worth to write zip as ZIP if it means the file format. This spelling is used in the zipfile documentation and some other places. But this is a separate issue or PR.
Other names that could be unified: Windows, macOS (the current official name for Mac OS X and OS X), POSIX, Unix or UNIX (?), Tcl/Tk, IDLE. |
@serhiy-storchaka This PR does not modify docstrings nor comments. I didn't search in the source code. Personally, I don't see the point of opening PRs for fixing this kind of mistakes in the source code if they don't show up to the end user. Were you suggesting to open an issue if the PR modified docstrings/comments only, or do you think it makes sense to open one when the PR only changes the documentation? Should the fixes for Windows/macOS/POSIX/Unix (according to Documenting Python)/Tcl/Tk/IDLE be included in this PR, should they share a new PR, or should they have a PR for each name? |
They can share a new PR. If you do changes for things that aren't yet covered in Documenting Python, consider also opening a PR for the devguide, so the proper capitalization is recorded there. |
Thanks @andresdelfino for the PR, and @encukou for merging it 🌮🎉.. I'm working now to backport this PR to: 2.7, 3.6, 3.7. |
(cherry picked from commit 271818f) Co-authored-by: Andrés Delfino <adelfino@gmail.com>
GH-9313 is a backport of this pull request to the 3.7 branch. |
Sorry, @andresdelfino and @encukou, I could not cleanly backport this to |
Sorry, @andresdelfino and @encukou, I could not cleanly backport this to |
I'm OK with this not being backported to 3.6 and below, but |
I agree with you. |
No description provided.