diff options
author | Guido van Rossum <guido@python.org> | 1996-08-08 18:26:25 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-08 18:26:25 (GMT) |
commit | fcce630a7dfa2e1c10b87be44966196b693bd743 (patch) | |
tree | 8b65f983c965a803f888721b88683d4981cc39a3 /Lib/test/testall.py | |
parent | 47347f04258fc5d21673ab74725f0cda28c6d02f (diff) | |
download | cpython-fcce630a7dfa2e1c10b87be44966196b693bd743.zip cpython-fcce630a7dfa2e1c10b87be44966196b693bd743.tar.gz cpython-fcce630a7dfa2e1c10b87be44966196b693bd743.tar.bz2 |
Added test for math module
Diffstat (limited to 'Lib/test/testall.py')
-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 92e7b9f..6733a2c 100644 --- a/Lib/test/testall.py +++ b/Lib/test/testall.py @@ -29,4 +29,8 @@ print 'test_types' unload('test_types') import test_types +print 'test_math' +unload('test_math') +import test_math + print 'Passed all tests.' |