From: Barry Warsaw Date: Mon, 9 Dec 1996 21:49:55 +0000 (+0000) Subject: Added test_strop X-Git-Tag: v1.5a1~845 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=49852831fc103db3a395980df26d12f97cc9477b;p=thirdparty%2FPython%2Fcpython.git Added test_strop --- diff --git a/Lib/test/testall.out b/Lib/test/testall.out index b487b702f814..4678122fc12d 100644 --- a/Lib/test/testall.out +++ b/Lib/test/testall.out @@ -166,4 +166,5 @@ tan tanh test_time test_array +test_strop Passed all tests. diff --git a/Lib/test/testall.py b/Lib/test/testall.py index f85ac8aa6535..f8ce34691a26 100644 --- a/Lib/test/testall.py +++ b/Lib/test/testall.py @@ -41,4 +41,8 @@ print 'test_array' unload('test_array') import test_array +print 'test_strop' +unload('test_strop') +import test_strop + print 'Passed all tests.'