Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use a more idiomatic check in check_truediv. | Mark Dickinson | 2009-12-27 | 1 | -3/+2 |
| | |||||
* | Use ldexp(q, exp) instead of q*2.**exp in true division test, to avoid bogus ↵ | Mark Dickinson | 2009-12-27 | 1 | -1/+2 |
| | | | | failures on platforms with broken pow (e.g., Ubuntu/ia64). | ||||
* | Issue #1811: Improve accuracy and consistency of true division for integers. | Mark Dickinson | 2009-12-27 | 1 | -0/+168 |
| | |||||
* | Issue #7553: test_long_future wasn't testing properly. Thanks Florent Xicluna | Mark Dickinson | 2009-12-21 | 1 | -9/+7 |
| | | | | for bug report and patch. | ||||
* | Whitespace normalization. Ugh, we really need to do this more often. | Neal Norwitz | 2007-04-25 | 1 | -1/+1 |
| | | | | You might want to review this change as it's my first time. Be gentle. :-) | ||||
* | Convert test_long_future to use unittest. | Collin Winter | 2007-04-05 | 1 | -50/+50 |
| | |||||
* | 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. :) | ||||
* | Fix typo in error reporting. This doesn't need to go into the release | Tim Peters | 2001-09-07 | 1 | -1/+1 |
| | | | | branch (if it ever gets to the typo, the test is failing anyway). | ||||
* | Added some underflow-to-0.0 long/long true division tests. | Tim Peters | 2001-09-06 | 1 | -0/+6 |
| | |||||
* | Fixed a typo and added more tests. | Tim Peters | 2001-09-04 | 1 | -1/+12 |
| | |||||
* | Change long/long true division to return as many good bits as it can; | Tim Peters | 2001-09-04 | 1 | -0/+38 |
e.g., (1L << 40000)/(1L << 40001) returns 0.5, not Inf or NaN or whatever. |