diff options
author | Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> | 1996-12-09 22:58:42 (GMT) |
---|---|---|
committer | Roger E. Masse <rmasse@newcnri.cnri.reston.va.us> | 1996-12-09 22:58:42 (GMT) |
commit | b71035782ed0b08038d5461e8ab53dc05bf4a823 (patch) | |
tree | e023fa8c87aa0ac91295481dbfa6158176ac2627 | |
parent | 3ab26b9d7527f73d9a258ce4b6d15e915a4aebc1 (diff) | |
download | cpython-b71035782ed0b08038d5461e8ab53dc05bf4a823.zip cpython-b71035782ed0b08038d5461e8ab53dc05bf4a823.tar.gz cpython-b71035782ed0b08038d5461e8ab53dc05bf4a823.tar.bz2 |
Added test_cmath.py to test complex math module
-rw-r--r-- | Lib/test/testall.out | 1 | ||||
-rw-r--r-- | Lib/test/testall.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Lib/test/testall.out b/Lib/test/testall.out index 2128435..8ba5023 100644 --- a/Lib/test/testall.out +++ b/Lib/test/testall.out @@ -176,4 +176,5 @@ MD5 ("message digest") = f96b697d7cb7938d525a2f31aaf161d0 MD5 ("abcdefghijklmnopqrstuvwxyz") = c3fcd3d76192e4007dfb496cca67e13b MD5 ("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789") = d174ab98d277d9f5a5611c2c9f419d9f MD5 ("12345678901234567890123456789012345678901234567890123456789012345678901234567890") = 57edf4a22be3c955ac49da2e2107b67a +test_cmath Passed all tests. diff --git a/Lib/test/testall.py b/Lib/test/testall.py index b31dd98..9d680b1 100644 --- a/Lib/test/testall.py +++ b/Lib/test/testall.py @@ -11,7 +11,7 @@ import test_grammar for t in ['test_opcodes', 'test_operations', 'test_builtin', 'test_exceptions', 'test_types', 'test_math', 'test_time', - 'test_array', 'test_strop', 'test_md5', + 'test_array', 'test_strop', 'test_md5', 'test_cmath', ]: print t unload(t) |