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
bpo-32746: Fix multiple typos #5144
Conversation
Fix typos found by codespell.
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA). Unfortunately we couldn't find an account corresponding to your GitHub username on bugs.python.org (b.p.o) to verify you have signed the CLA (this might be simply due to a missing "GitHub Name" entry in your b.p.o account settings). This is necessary for legal reasons before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. Thanks again to your contribution and we look forward to looking at it! |
Lib/unittest/test/test_discovery.py
Outdated
@@ -199,7 +199,7 @@ def loadTestsFromModule(module, pattern=None): | |||
['a_directory', 'test_directory', 'test_directory2']) | |||
|
|||
# load_tests should have been called once with loader, tests and pattern | |||
# (but there are no tests in our stub module itself, so thats [] at the | |||
# (but there are no tests in our stub module itself, so that's [] at the |
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.
'that is' would maybe be even better
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.
done.
Lib/test/decimaltestdata/abs.decTest
Outdated
@@ -20,7 +20,7 @@ | |||
version: 2.59 | |||
|
|||
-- This set of tests primarily tests the existence of the operator. | |||
-- Additon, subtraction, rounding, and more overflows are tested |
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.
This is an external source. I would prefer not to maintain our own version, even for typos.
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.
reverted.
Modules/_ctypes/libffi_msvc/win32.c
Outdated
@@ -2,21 +2,21 @@ | |||
win32.S - Copyright (c) 1996, 1998, 2001, 2002 Red Hat, Inc. | |||
Copyright (c) 2001 John Beniton | |||
Copyright (c) 2002 Ranjit Mathew | |||
|
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.
I realize we have our own copy of libffi for Windows. Wouldn't changes to these files cause porting upstream changes more difficult? I suggest we not change any libffi files. See Modules/_ctypes/libffi_osx/README.ctypes.
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.
reverted.
@@ -650,7 +650,7 @@ ffi_call( | |||
+---------------------------------------+ 160 | |||
| result area 8 | | |||
+---------------------------------------+ 168 | |||
| alignement to the next multiple of 16 | |
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.
Same comment with this file:
I realize we have our own copy of libffi for OS-X. Wouldn't changes to these files cause porting upstream changes more difficult? I suggest we not change any libffi files. See Modules/_ctypes/libffi_osx/README.pyobjc.
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.
reverted.
A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated. Once you have made the requested changes, please leave a comment on this pull request containing the phrase |
@@ -447,4 +447,3 @@ The remaining methods are specific to audio mixing: | |||
microphone input:: | |||
|
|||
mixer.setrecsrc (1 << ossaudiodev.SOUND_MIXER_MIC) | |||
|
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.
Pls do not remove existing lines. In other places too
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.
I can revert this, but I'm curious, why do you want two empty lines at the bottom?
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.
I am sorry. I didn't look at the file. If it is at bottom, you can keep it. I am worried about introducing unnecessary git diffs in the middle of a file.
Leo, it might have been better to open a bpo issue for changes to this many files, but I don't think it necessary now, so I am adding the skip labels now. I found your bpo user listing, with the same user name, but there is no indication you have signed the CLA. It would not be needed for any one of the typo fixes, so unless objects, I would let that pass. The conflict in aclocal.m4 appeared to be because someone added, since this patch,
at the bottom of the file, which conflicted with your removal of an extra blank line at the bottom without the context of the new line. In any case, I removed the context markers and left the addition alone. This should be rechecked after the retesting. |
Hello, and thanks for your contribution! I'm a bot set up to make sure that the project can legally accept your contribution by verifying you have signed the PSF contributor agreement (CLA). Unfortunately our records indicate you have not signed the CLA. For legal reasons we need you to sign this before we can look at your contribution. Please follow the steps outlined in the CPython devguide to rectify this issue. Thanks again to your contribution and we look forward to looking at it! |
A few changes have been reverted. Does anything think anything else should be? |
I decided a) to open an issue and b) to make this strictly about typos. After previous changes, there was only one whitespace deletion left (\n at the end of a data file). |
Lib/opcode.py
Outdated
@@ -142,7 +142,7 @@ def jabs_op(name, op): | |||
def_op('BUILD_TUPLE', 102) # Number of tuple items | |||
def_op('BUILD_LIST', 103) # Number of list items | |||
def_op('BUILD_SET', 104) # Number of set items | |||
def_op('BUILD_MAP', 105) # Number of dict entries (upto 255) | |||
def_op('BUILD_MAP', 105) # Number of dict entries (up to 255) |
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.
"(up to 255)" is outdated (in 3.6 too). Just remove it.
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.
elopio or whoever makes the change should refresh the patch against master.
Lib/unittest/test/test_discovery.py
Outdated
# (but there are no tests in our stub module itself, so thats [] at the | ||
# time of call. | ||
# (but there are no tests in our stub module itself, so that is [] at | ||
# the time of call. |
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.
Close parenthesis.
aclocal.m4
Outdated
@@ -100,7 +100,7 @@ dnl Check to see whether a particular set of modules exists. Similar to | |||
dnl PKG_CHECK_MODULES(), but does not set variables or print errors. | |||
dnl | |||
dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) | |||
dnl only at the first occurence in configure.ac, so if the first place | |||
dnl only at the first occurrence in configure.ac, so if the first place |
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.
Shouldn't configure
be regenerated now?
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.
I don't know and could not do so. Perhaps this should be reverted and either done separately, for 3.8 only, or left alone.
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.
All 3 changes made. Anyone who wants to fix 'occurence' in aclocal.m4 for 3.8 and regenerate configure
or whatever should do so separately.
Thanks @ElOpio for the PR, and @terryjreedy for merging it |
Fix typos found by codespell in docs, docstrings, and comments. (cherry picked from commit c3d9508) Co-authored-by: Leo Arias <leo.arias@canonical.com>
GH-5520 is a backport of this pull request to the 3.7 branch. |
Sorry, @ElOpio and @terryjreedy, I could not cleanly backport this to |
Fix typos found by codespell in docs, docstrings, and comments.. (cherry picked from commit c3d9508)
GH-5522 is a backport of this pull request to the 3.6 branch. |
Fix typos found by codespell in docs, docstrings, and comments. Fixes for the following files were in post-3.6 code and not backported: Lib/ctypes/_aix.py (new), Lib/test/test_concurrent_futures.py, Modules/_asynciomodule.c, Modules/_pickle.c, Objects/obmalloc.c. (cherry picked from commit c3d9508)
thanks everybody!!! hugs |
Fix typos found by codespell in docs, docstrings, and comments.
https://bugs.python.org/issue32746