Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove test for mpz | Andrew M. Kuchling | 2004-08-31 | 1 | -89/+0 |
| | |||||
* | Replace backticks with repr() or "%r" | Walter Dörwald | 2004-02-12 | 1 | -1/+1 |
| | | | | From SF patch #852334. | ||||
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -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 Peters | 2002-04-16 | 1 | -1/+0 |
| | |||||
* | There is no TestError, use TestFailed appropriately | Neal Norwitz | 2002-04-01 | 1 | -1/+1 |
| | |||||
* | Get rid of all METH_OLDARGS & PyArg_Parse. | Neal Norwitz | 2002-04-01 | 1 | -0/+90 |
Fix floating point exception if mpz.powm(10, 1, 0) (modulus == 0). Add a test. |