summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-02-04 01:41:43 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2018-02-04 01:41:43 (GMT)
commite86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df (patch)
tree93595a8942b755afd2b49bc574fb7dce9a072ea1 /Python
parent52f745852e49498d7dd86fd309ae57f6a7af568f (diff)
downloadcpython-e86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df.zip
cpython-e86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df.tar.gz
cpython-e86db34dd3b43dc9c9beb21a82cd2c3b7c4c05df.tar.bz2
[3.7] bpo-32746: Fix multiple typos (GH-5144) (GH-5520)
Fix typos found by codespell in docs, docstrings, and comments. (cherry picked from commit c3d9508ff22ece9a96892b628dd5813e2fb0cd80) Co-authored-by: Leo Arias <leo.arias@canonical.com>
Diffstat (limited to 'Python')
-rw-r--r--Python/getargs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index 56e60f6..97c1fe8 100644
--- a/Python/getargs.c
+++ b/Python/getargs.c
@@ -1784,7 +1784,7 @@ vgetargskeywords(PyObject *args, PyObject *kwargs, const char *format,
}
}
- /* We are into optional args, skip thru to any remaining
+ /* We are into optional args, skip through to any remaining
* keyword args */
msg = skipitem(&format, p_va, flags);
if (msg) {
@@ -2176,7 +2176,7 @@ vgetargskeywordsfast_impl(PyObject *const *args, Py_ssize_t nargs,
return cleanreturn(1, &freelist);
}
- /* We are into optional args, skip thru to any remaining
+ /* We are into optional args, skip through to any remaining
* keyword args */
msg = skipitem(&format, p_va, flags);
assert(msg == NULL);