diff options
author | Marc-André Lemburg <mal@egenix.com> | 2001-01-17 19:11:13 +0000 |
---|---|---|
committer | Marc-André Lemburg <mal@egenix.com> | 2001-01-17 19:11:13 +0000 |
commit | 927fa2418874ccab7d0eb5d6249be0c96a24beba (patch) | |
tree | e29aa1d89cd88148d9e62a10ff82ab5dddb79b9c /Lib/test/test_string.py | |
parent | 5a9bf08b78176097d918d0ec7174e68094ee63a2 (diff) | |
download | cpython-927fa2418874ccab7d0eb5d6249be0c96a24beba.tar.gz |
This patch removes all uses of "assert" in the regression test suite
and replaces them with a new API verify(). As a result the regression
suite will also perform its tests in optimization mode.
Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum.
Diffstat (limited to 'Lib/test/test_string.py')
-rw-r--r-- | Lib/test/test_string.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_string.py b/Lib/test/test_string.py index 3574719df4..fd1cbae14f 100644 --- a/Lib/test/test_string.py +++ b/Lib/test/test_string.py @@ -1,4 +1,4 @@ -from test_support import verbose, TestSkipped +from test_support import verify, verbose, TestSkipped import string_tests import string, sys |