summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_generators.py
diff options
context:
space:
mode:
authorLeo Arias <leo.arias@canonical.com>2018-02-04 00:36:10 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2018-02-04 00:36:10 (GMT)
commitc3d9508ff22ece9a96892b628dd5813e2fb0cd80 (patch)
tree56271a3b3e3681e47e97ec2dca926bc9cb891a5e /Lib/test/test_generators.py
parent589c718a8e3bde017350f248f7f1c009240eb52b (diff)
downloadcpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.zip
cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.gz
cpython-c3d9508ff22ece9a96892b628dd5813e2fb0cd80.tar.bz2
bpo-32746: Fix multiple typos (GH-5144)
Fix typos found by codespell in docs, docstrings, and comments.
Diffstat (limited to 'Lib/test/test_generators.py')
-rw-r--r--Lib/test/test_generators.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py
index 3461f20..7360b34 100644
--- a/Lib/test/test_generators.py
+++ b/Lib/test/test_generators.py
@@ -1500,7 +1500,7 @@ class Knights:
succs[final].remove(corner)
add_to_successors(this)
- # Generate moves 3 thru m*n-1.
+ # Generate moves 3 through m*n-1.
def advance(len=len):
# If some successor has only one exit, must take it.
# Else favor successors with fewer exits.
@@ -1522,7 +1522,7 @@ class Knights:
yield i
add_to_successors(i)
- # Generate moves 3 thru m*n-1. Alternative version using a
+ # Generate moves 3 through m*n-1. Alternative version using a
# stronger (but more expensive) heuristic to order successors.
# Since the # of backtracking levels is m*n, a poor move early on
# can take eons to undo. Smallest square board for which this