summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_mpz.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove test for mpzAndrew M. Kuchling2004-08-311-89/+0
|
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-1/+1
| | | | From SF patch #852334.
* Get rid of relative imports in all unittests. Now anything thatBarry Warsaw2002-07-231-1/+1
| | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :)
* Whitespace normalization.Tim Peters2002-04-161-1/+0
|
* There is no TestError, use TestFailed appropriatelyNeal Norwitz2002-04-011-1/+1
|
* Get rid of all METH_OLDARGS & PyArg_Parse.Neal Norwitz2002-04-011-0/+90
Fix floating point exception if mpz.powm(10, 1, 0) (modulus == 0). Add a test.