home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 April / PCWorld_2001-04_cd.bin / Software / TemaCD / webclean / !!!python!!! / BeOpen-Python-2.0.exe / TEST_POW < prev    next >
Encoding:
Text File  |  1996-12-19  |  485 b   |  30 lines

  1. test_pow
  2. Testing integer mode...
  3.     Testing 2-argument pow() function...
  4.     Testing 3-argument pow() function...
  5. Testing long integer mode...
  6.     Testing 2-argument pow() function...
  7.     Testing 3-argument pow() function...
  8. Testing floating point mode...
  9.     Testing 3-argument pow() function...
  10. The number in both columns should match.
  11. 3 3
  12. -5 -5
  13. -1 -1
  14. 5 5
  15. -3 -3
  16. -7 -7
  17.  
  18. 3L 3L
  19. -5L -5L
  20. -1L -1L
  21. 5L 5L
  22. -3L -3L
  23. -7L -7L
  24.  
  25. 3.0 3.0
  26. -5.0 -5.0
  27. -1.0 -1.0
  28. -7.0 -7.0
  29.  
  30.