summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_decimal.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #7233: A number of two-argument Decimal methods were failing toMark Dickinson2009-10-291-0/+47
* Update decimal test data to the most recent set from Mike Cowlishaw.Mark Dickinson2009-10-081-0/+11
* Issue #6857: Fix Decimal formatting to be consistent with existing floatMark Dickinson2009-09-081-1/+2
* #Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Dec...Mark Dickinson2009-09-071-0/+10
* Issue #6850: Fix bug in Decimal._parse_format_specifier for formatsMark Dickinson2009-09-071-0/+3
* Issue #6595: Allow Decimal constructor to accept non-European decimalMark Dickinson2009-08-021-3/+9
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-46/+46
* fix incorrect auto-translation of TestSkipped -> unittest.SkipTestBenjamin Peterson2009-03-261-3/+2
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-2/+2
* Fix bug in _insert_thousands_sep: too much zero padding could beMark Dickinson2009-03-181-0/+22
* Issue #2110: Add support for thousands separator and 'n' format specifierMark Dickinson2009-03-171-1/+97
* Fix bug in Decimal __format__ method that swapped left and rightMark Dickinson2009-03-171-0/+6
* Register decimals as numbers.NumberRaymond Hettinger2009-02-031-0/+7
* Remove an unnecessary check from test_decimal.Mark Dickinson2009-01-101-1/+0
* Issue 4796: Add from_float methods to the decimal module.Raymond Hettinger2009-01-031-0/+49
* Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sureMark Dickinson2008-07-021-0/+3
* Fixed some test structures. Thanks Mark Dickinson.Facundo Batista2008-05-021-16/+9
* Remove some from __future__ import with_statementsBenjamin Peterson2008-04-301-1/+0
* Issue #2482: Make sure that the coefficient of a DecimalMark Dickinson2008-03-251-0/+16
* Issue #2478: Decimal(sqrt(0)) failed when the decimal contextMark Dickinson2008-03-251-0/+6
* Small fix that complicated the test actually when thatFacundo Batista2008-03-221-4/+10
* Add __format__ method to Decimal, to support PEP 3101Mark Dickinson2008-02-291-0/+93
* Fix decimal repr which should have used single quotes like other reprs.Raymond Hettinger2008-02-141-1/+1
* Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaNMark Dickinson2008-02-061-1/+19
* Move __builtins__.trunc() to math.trunc() perJeffrey Yasskin2008-02-011-2/+3
* Add support for trunc().Raymond Hettinger2008-01-241-0/+11
* Issue 1780: Allow leading and trailing whitespace in Decimal constructor,Mark Dickinson2008-01-121-0/+8
* Issue #1757: The hash of a Decimal instance is no longer affectedFacundo Batista2008-01-081-0/+17
* Major change in the internal structure of the DecimalFacundo Batista2007-11-231-0/+1
* The constructor from tuple was way too permissive: it allowed badFacundo Batista2007-10-191-0/+27
* Made the various is_* operations return booleans. This was discussedFacundo Batista2007-10-021-13/+39
* Issue #1772851. Optimization of __hash__ to behave better for big bigFacundo Batista2007-09-191-0/+32
* Fix obvious typo in threaded test.Thomas Wouters2007-09-191-1/+1
* The methods always return Decimal classes, even if they'reFacundo Batista2007-09-171-0/+15
* Merged the decimal-branch (revisions 54886 to 58140). Decimal is nowFacundo Batista2007-09-131-48/+170
* Make decimal.ContextManager a private implementation detail of decimal.localc...Nick Coghlan2006-09-021-13/+2
* Fix the wrongheaded implementation of context management in the decimal modul...Nick Coghlan2006-08-311-0/+39
* Fix tests so they pass in -R modeNeal Norwitz2006-04-091-5/+8
* test_main(): Restore the decimal context that was inTim Peters2006-03-311-10/+14
* whitespace normalisationAnthony Baxter2006-03-301-1/+1
* Make test_decimal work with -Qnew.Georg Brandl2006-03-281-10/+16
* * Fix decimal's handling of foreign types. Now returns NotImplementedRaymond Hettinger2005-03-271-7/+50
* Bug #1163325: "special" decimals aren't hashableRaymond Hettinger2005-03-151-0/+3
* Bug #1083645Raymond Hettinger2004-12-181-2/+12
* SF bug #1071588 coercing decimal to int doesn't work between -1 and 1Raymond Hettinger2004-11-241-4/+4
* Change the strategy for coping with time intensive tests fromRaymond Hettinger2004-09-041-7/+12
* There are no longer any special case test skips.Raymond Hettinger2004-08-171-3/+0
* * Dynamically build a list of files to be tested (necessary becauseRaymond Hettinger2004-08-171-81/+14
* Add a test for Context.copy().Raymond Hettinger2004-08-081-0/+8
* * Hide a loop induction variable that was inadvertantly being picked upRaymond Hettinger2004-07-141-28/+0