| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
some corner-case Decimal.__pow__ calls to take an unreasonably long time.
|
|
|
|
| |
ROUND_FLOOR rounding mode.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r82646 | mark.dickinson | 2010-07-08 18:23:40 +0100 (Thu, 08 Jul 2010) | 1 line
In test_decimal, convert heuristic for skipping tests into an explicit skiplist.
........
r82649 | mark.dickinson | 2010-07-08 20:03:34 +0100 (Thu, 08 Jul 2010) | 1 line
Fix a performance issue in Decimal.pow. Thanks Stefan Krah for finding this.
........
r82650 | mark.dickinson | 2010-07-08 20:09:16 +0100 (Thu, 08 Jul 2010) | 1 line
Fix misplaced exactness check that was causing unnecessary work in Decimal.__pow__.
........
|
|
|
|
|
| |
arguments with more digits than the current context precision.
Bug reported by Stefan Krah.
|
| |
|
|
|
|
| |
finite non-subnormal values, even those with exponent > Emax.
|
| |
|
|
|
|
| |
Decimal.compare_total_mag.
|
|
|
|
|
|
| |
give correct results in the case where one argument is a quiet NaN
and the other is a finite number that requires rounding.
Thanks Mark Dickinson.
|
|
|
|
| |
(v. 1.68) and tests (v. 2.58) from IBM.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
with Cawlishaw by mail, and he basically confirmed that to these is_*
operations, there's no need to return Decimal(0) and Decimal(1) if
the language supports the False and True booleans.
Also added a few tests for the these functions in extra.decTest, since
they are mostly untested (apart from the doctests).
Thanks Mark Dickinson
|
|
|
|
|
|
|
| |
fully updated to the latests Decimal Specification (v1.66) and the
latests test cases (v2.56).
Thanks to Mark Dickinson for all his help during this process.
|
|
|
|
|
|
|
|
| |
normalize() in Draft 1.06 (9 October 2002):
The normalize operation has been added; it reduces a number to a
canonical form. (This replaces the trim operator, which only
removed trailing fractional zeros.)
|
|
|
|
| |
Was supplanted by tointegral.decTest.
|
|
|
|
| |
test suite in version 2.39 of dectest.zip.
|
|
|