summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_numeric_tower.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #7652: Integrate the decimal floating point libmpdec library to speedStefan Krah2012-03-211-1/+1
| | | | | up the decimal module. Performance gains of the new C implementation are between 12x and 80x, depending on the application.
* #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
|
* Issue #8188: Comparisons between Decimal objects and other numericMark Dickinson2010-06-111-1/+56
| | | | objects (Fraction, float, complex, int) now all function as expected.
* Issue #8188: Introduce a new scheme for computing hashes of numbersMark Dickinson2010-05-231-0/+151
(instances of int, float, complex, decimal.Decimal and fractions.Fraction) that makes it easy to maintain the invariant that hash(x) == hash(y) whenever x and y have equal value.