diff options
author | Barry Warsaw <barry@python.org> | 1996-12-06 23:30:49 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1996-12-06 23:30:49 (GMT) |
commit | 6ab7f077ffb3c3021f16984a658dea67cb810464 (patch) | |
tree | a4287c1c93a94639ad098b56076aa6b419ff5bef /Lib/test | |
parent | 5bebca2ac2edfd897301b64b211b68d283cb7b9e (diff) | |
download | cpython-6ab7f077ffb3c3021f16984a658dea67cb810464.zip cpython-6ab7f077ffb3c3021f16984a658dea67cb810464.tar.gz cpython-6ab7f077ffb3c3021f16984a658dea67cb810464.tar.bz2 |
Added test_time
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/testall.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/testall.py b/Lib/test/testall.py index 6733a2c..aef9cdc 100644 --- a/Lib/test/testall.py +++ b/Lib/test/testall.py @@ -33,4 +33,8 @@ print 'test_math' unload('test_math') import test_math +print 'test_time' +unload('test_time') +import test_time + print 'Passed all tests.' |