| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 70430 via svnmerge from | Mark Dickinson | 2009-03-17 | 1 | -0/+6 |
|
|
* | Register decimals as numbers.Number | Raymond Hettinger | 2009-02-03 | 1 | -0/+7 |
|
|
* | Merged revisions 68292,68344,68361,68378,68424,68426,68429-68430,68450,68457,... | Georg Brandl | 2009-01-14 | 1 | -1/+0 |
|
|
* | Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sure | Mark Dickinson | 2008-07-02 | 1 | -0/+3 |
|
|
* | Fixed some test structures. Thanks Mark Dickinson. | Facundo Batista | 2008-05-02 | 1 | -16/+9 |
|
|
* | Remove some from __future__ import with_statements | Benjamin Peterson | 2008-04-30 | 1 | -1/+0 |
|
|
* | Issue #2482: Make sure that the coefficient of a Decimal | Mark Dickinson | 2008-03-25 | 1 | -0/+16 |
|
|
* | Issue #2478: Decimal(sqrt(0)) failed when the decimal context | Mark Dickinson | 2008-03-25 | 1 | -0/+6 |
|
|
* | Small fix that complicated the test actually when that | Facundo Batista | 2008-03-22 | 1 | -4/+10 |
|
|
* | Add __format__ method to Decimal, to support PEP 3101 | Mark Dickinson | 2008-02-29 | 1 | -0/+93 |
|
|
* | Fix decimal repr which should have used single quotes like other reprs. | Raymond Hettinger | 2008-02-14 | 1 | -1/+1 |
|
|
* | Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN | Mark Dickinson | 2008-02-06 | 1 | -1/+19 |
|
|
* | Move __builtins__.trunc() to math.trunc() per | Jeffrey Yasskin | 2008-02-01 | 1 | -2/+3 |
|
|
* | Add support for trunc(). | Raymond Hettinger | 2008-01-24 | 1 | -0/+11 |
|
|
* | Issue 1780: Allow leading and trailing whitespace in Decimal constructor, | Mark Dickinson | 2008-01-12 | 1 | -0/+8 |
|
|
* | Issue #1757: The hash of a Decimal instance is no longer affected | Facundo Batista | 2008-01-08 | 1 | -0/+17 |
|
|
* | Major change in the internal structure of the Decimal | Facundo Batista | 2007-11-23 | 1 | -0/+1 |
|
|
* | The constructor from tuple was way too permissive: it allowed bad | Facundo Batista | 2007-10-19 | 1 | -0/+27 |
|
|
* | Made the various is_* operations return booleans. This was discussed | Facundo Batista | 2007-10-02 | 1 | -13/+39 |
|
|
* | Issue #1772851. Optimization of __hash__ to behave better for big big | Facundo Batista | 2007-09-19 | 1 | -0/+32 |
|
|
* | Fix obvious typo in threaded test. | Thomas Wouters | 2007-09-19 | 1 | -1/+1 |
|
|
* | The methods always return Decimal classes, even if they're | Facundo Batista | 2007-09-17 | 1 | -0/+15 |
|
|
* | Merged the decimal-branch (revisions 54886 to 58140). Decimal is now | Facundo Batista | 2007-09-13 | 1 | -48/+170 |
|
|
* | Make decimal.ContextManager a private implementation detail of decimal.localc... | Nick Coghlan | 2006-09-02 | 1 | -13/+2 |
|
|
* | Fix the wrongheaded implementation of context management in the decimal modul... | Nick Coghlan | 2006-08-31 | 1 | -0/+39 |
|
|
* | Fix tests so they pass in -R mode | Neal Norwitz | 2006-04-09 | 1 | -5/+8 |
|
|
* | test_main(): Restore the decimal context that was in | Tim Peters | 2006-03-31 | 1 | -10/+14 |
|
|
* | whitespace normalisation | Anthony Baxter | 2006-03-30 | 1 | -1/+1 |
|
|
* | Make test_decimal work with -Qnew. | Georg Brandl | 2006-03-28 | 1 | -10/+16 |
|
|
* | * Fix decimal's handling of foreign types. Now returns NotImplemented | Raymond Hettinger | 2005-03-27 | 1 | -7/+50 |
|
|
* | Bug #1163325: "special" decimals aren't hashable | Raymond Hettinger | 2005-03-15 | 1 | -0/+3 |
|
|
* | Bug #1083645 | Raymond Hettinger | 2004-12-18 | 1 | -2/+12 |
|
|
* | SF bug #1071588 coercing decimal to int doesn't work between -1 and 1 | Raymond Hettinger | 2004-11-24 | 1 | -4/+4 |
|
|
* | Change the strategy for coping with time intensive tests from | Raymond Hettinger | 2004-09-04 | 1 | -7/+12 |
|
|
* | There are no longer any special case test skips. | Raymond Hettinger | 2004-08-17 | 1 | -3/+0 |
|
|
* | * Dynamically build a list of files to be tested (necessary because | Raymond Hettinger | 2004-08-17 | 1 | -81/+14 |
|
|
* | Add a test for Context.copy(). | Raymond Hettinger | 2004-08-08 | 1 | -0/+8 |
|
|
* | * Hide a loop induction variable that was inadvertantly being picked up | Raymond Hettinger | 2004-07-14 | 1 | -28/+0 |
|
|
* | * Rename "Signals" to "_signals" making it non-public. | Raymond Hettinger | 2004-07-14 | 1 | -1/+7 |
|
|
* | Improve Context construction and representation: | Raymond Hettinger | 2004-07-10 | 1 | -16/+12 |
|
|
* | * Update the test suite to reflect that ConversionSyntax was no longer | Raymond Hettinger | 2004-07-09 | 1 | -2/+2 |
|
|
* | Module and tests: | Raymond Hettinger | 2004-07-09 | 1 | -6/+5 |
|
|
* | * Add __eq__ and __ne__ so that things like list.index() work properly | Raymond Hettinger | 2004-07-05 | 1 | -11/+16 |
|
|
* | Test the logic for int(d). | Raymond Hettinger | 2004-07-05 | 1 | -0/+10 |
|
|
* | * Make the tests independent of the default precision. | Raymond Hettinger | 2004-07-03 | 1 | -0/+7 |
|
|
* | Work through several open todos: | Raymond Hettinger | 2004-07-03 | 1 | -7/+23 |
|
|
* | Move Decimal from the sandbox into production. | Raymond Hettinger | 2004-07-01 | 1 | -0/+1082 |
|
|