diff options
author | Barry Warsaw <barry@python.org> | 2002-08-06 16:58:21 +0000 |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2002-08-06 16:58:21 +0000 |
commit | 817918cc3c10d0ed6b14e0e3f2bc0c5227c508cd (patch) | |
tree | 5dcdd3861db33fde0a76f275c09d40cba9c6fa22 /Lib/test/test_string.py | |
parent | Files are now their own iterator. The xreadlines method and module (diff) | |
download | cpython-817918cc3c10d0ed6b14e0e3f2bc0c5227c508cd.tar.gz cpython-817918cc3c10d0ed6b14e0e3f2bc0c5227c508cd.tar.bz2 cpython-817918cc3c10d0ed6b14e0e3f2bc0c5227c508cd.zip |
Committing patch #591250 which provides "str1 in str2" when str1 is a
string of longer than 1 character.
Diffstat (limited to 'Lib/test/test_string.py')
-rw-r--r-- | Lib/test/test_string.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py index af8c1bce66d..c92f5f7d1f7 100644 --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -51,6 +51,7 @@ def test(name, input, output, *args): string_tests.run_module_tests(test) string_tests.run_method_tests(test) +string_tests.run_contains_tests(test) string.whitespace string.lowercase |