summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_numeric_tower.py
Commit message (Collapse)AuthorAgeFilesLines
* 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.