From c3d9508ff22ece9a96892b628dd5813e2fb0cd80 Mon Sep 17 00:00:00 2001 From: Leo Arias Date: Sat, 3 Feb 2018 18:36:10 -0600 Subject: bpo-32746: Fix multiple typos (GH-5144) Fix typos found by codespell in docs, docstrings, and comments. --- Lib/test/test_generators.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Lib/test/test_generators.py') diff --git a/Lib/test/test_generators.py b/Lib/test/test_generators.py index 3461f203de..7360b34023 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 -- cgit v1.2.1