[Python-checkins] python/dist/src/Lib/test test_math.py,1.18,1.19

rhettinger@users.sourceforge.net rhettinger@users.sourceforge.net
Wed, 18 Dec 2002 08:13:19 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv18380

Modified Files:
	test_math.py 
Log Message:
Expand log() tests to include long integers.

Index: test_math.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_math.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** test_math.py	14 Dec 2002 19:51:33 -0000	1.18
--- test_math.py	18 Dec 2002 16:13:16 -0000	1.19
***************
*** 115,118 ****
--- 115,120 ----
  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'