]> granicus.if.org Git - python/commitdiff
Expand log() tests to include long integers.
authorRaymond Hettinger <python@rcn.com>
Wed, 18 Dec 2002 16:13:16 +0000 (16:13 +0000)
committerRaymond Hettinger <python@rcn.com>
Wed, 18 Dec 2002 16:13:16 +0000 (16:13 +0000)
Lib/test/test_math.py

index 8063025d50d809962147f3640fd8e4e88446045a..3a6b7fc88dde17927755de6a4bbbb89fd80e226a 100644 (file)
@@ -114,6 +114,8 @@ testit('log(1/e)', math.log(1/math.e), -1)
 testit('log(1)', math.log(1), 0)
 testit('log(e)', math.log(math.e), 1)
 testit('log(32,2)', math.log(32,2), 5)
+testit('log(10**40, 10)', math.log(10**40, 10), 40)
+testit('log(10**40, 10**20)', math.log(10**40, 10**20), 2)
 
 print 'log10'
 testit('log10(0.1)', math.log10(0.1), -1)