gh-145961: Fix typos in configure.ac and pyconfig.h.in#145962
gh-145961: Fix typos in configure.ac and pyconfig.h.in#145962crawfordxx wants to merge 1 commit intopython:mainfrom
Conversation
- configure.ac line 6415: "useable" -> "usable" (two occurrences) - configure.ac line 6505: "defauly" -> "default" - pyconfig.h.in line 1602: "useable" -> "usable" (two occurrences) All changes are in comments only.
|
The following commit authors need to sign the Contributor License Agreement: |
|
Most changes to Python require a NEWS entry. Add one using the blurb_it web app or the blurb command-line tool. If this change has little impact on Python users, wait for a maintainer to apply the |
|
Sorry, we don't accept typo fixes for internal comments as it is code churn. Typos can be fixed for user-facing text (e.g. docs or docstrings), in which case an issue is not required. Please see the dev guide for more information about what kinds of contributions are accepted: https://devguide.python.org/ |
|
IMO, change in the configure.ac partially (useable -> usable) fits this requirement (it's user-facing text), but I'm not sure if there is something wrong with the text. |
|
Both are accepted spellings, so I don't see any need |
Fix typos in comments in
configure.acandpyconfig.h.in.Changes:
configure.acline 6415:useable→usable(two occurrences on the same line)configure.acline 6505:defauly→defaultpyconfig.h.inline 1602:useable→usable(two occurrences on the same line)All changes are in comments only; no functional code is affected. The generated
configurefile is intentionally not modified.Fixes gh-145961.