diff options
author | Barry Warsaw <barry@python.org> | 1996-12-09 21:49:55 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1996-12-09 21:49:55 (GMT) |
commit | 49852831fc103db3a395980df26d12f97cc9477b (patch) | |
tree | a163093218503a1c5c680adb953d7a449f243f6e /Lib/test | |
parent | ad522facf704e7ab3971331f1c8ce4b42a9997a9 (diff) | |
download | cpython-49852831fc103db3a395980df26d12f97cc9477b.zip cpython-49852831fc103db3a395980df26d12f97cc9477b.tar.gz cpython-49852831fc103db3a395980df26d12f97cc9477b.tar.bz2 |
Added test_strop
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/testall.out | 1 | ||||
-rw-r--r-- | Lib/test/testall.py | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/testall.out b/Lib/test/testall.out index b487b70..4678122 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 f85ac8a..f8ce346 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.' |