summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_itertools.py
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-05-26 06:03:33 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-05-26 06:03:33 (GMT)
commitf157982b2c66be30d94a3f3ce0dfc2d9ebd3bd19 (patch)
tree39c71ffdf07566b30f7dc3a64c0b76e99be6240a /Lib/test/test_itertools.py
parent3e04d5b3068ac67cc01a32b1d5a51ac79c9df5a1 (diff)
downloadcpython-f157982b2c66be30d94a3f3ce0dfc2d9ebd3bd19.zip
cpython-f157982b2c66be30d94a3f3ce0dfc2d9ebd3bd19.tar.gz
cpython-f157982b2c66be30d94a3f3ce0dfc2d9ebd3bd19.tar.bz2
Issue #27076: More doc and comment spelling fixes for 3.6, by Ville Skyttä
Diffstat (limited to 'Lib/test/test_itertools.py')
-rw-r--r--Lib/test/test_itertools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_itertools.py b/Lib/test/test_itertools.py
index 3bbfdf1..945c58d 100644
--- a/Lib/test/test_itertools.py
+++ b/Lib/test/test_itertools.py
@@ -635,7 +635,7 @@ class TestBasicOps(unittest.TestCase):
# Mode 0 is efficient. It uses an incompletely consumed input
# iterator to build a cycle object and then passes in state with
# a list of previously consumed values. There is no data
- # overlap bewteen the two.
+ # overlap between the two.
c = cycle('defg')
c.__setstate__((list('abc'), 0))
self.assertEqual(take(20, c), list('defgabcdefgabcdefgab'))