Whitespace normalization. Leaving tokenize_tests.py alone for now.

This commit is contained in:
Tim Peters 2001-01-18 02:22:22 +00:00
parent be4cbb1668
commit d2bf3b7ca6
9 changed files with 41 additions and 44 deletions

View file

@ -56,7 +56,7 @@ def run_method_tests(test):
test('count', 'aaa', 3, 'a')
test('count', 'aaa', 0, 'b')
test('find', 'abcdefghiabc', 0, 'abc')
test('find', 'abcdefghiabc', 9, 'abc', 1)
test('find', 'abcdefghiabc', -1, 'def', 4)