| Commit message (Expand) | Author | Age | Files | Lines |
* | Merged revisions 68317-68318 via svnmerge from | Mark Dickinson | 2009-01-04 | 1 | -4/+4 |
|
|
* | Merged revisions 68191 via svnmerge from | Mark Dickinson | 2009-01-03 | 1 | -56/+56 |
|
|
* | Merged revisions 68182 via svnmerge from | Mark Dickinson | 2009-01-02 | 1 | -63/+63 |
|
|
* | Merged revisions 67694 via svnmerge from | Mark Dickinson | 2008-12-11 | 1 | -16/+16 |
|
|
* | Fix: | Neal Norwitz | 2008-08-24 | 1 | -1/+1 |
|
|
* | Issue 2235: __hash__ is once again inherited by default, but inheritance can ... | Nick Coghlan | 2008-07-15 | 1 | -4/+2 |
|
|
* | Replace occurrences of '\d' with '[0-9]' in Decimal regex, to make sure | Mark Dickinson | 2008-07-02 | 1 | -10/+10 |
|
|
* | Make sure that Context traps and flags dictionaries have values 0 and 1 | Mark Dickinson | 2008-05-04 | 1 | -2/+2 |
|
|
* | Some very minor changes to decimal.py in Python 2.6, aimed | Mark Dickinson | 2008-05-04 | 1 | -9/+9 |
|
|
* | Backport Raymond's changes in r60508 to Python 2.6. | Mark Dickinson | 2008-05-03 | 1 | -4/+4 |
|
|
* | Fixed some test structures. Thanks Mark Dickinson. | Facundo Batista | 2008-05-02 | 1 | -5/+1 |
|
|
* | Issue #2482: Make sure that the coefficient of a Decimal | Mark Dickinson | 2008-03-25 | 1 | -3/+3 |
|
|
* | Issue #2478: Decimal(sqrt(0)) failed when the decimal context | Mark Dickinson | 2008-03-25 | 1 | -3/+3 |
|
|
* | Fix docstring typo. | Mark Dickinson | 2008-02-29 | 1 | -1/+1 |
|
|
* | Add __format__ method to Decimal, to support PEP 3101 | Mark Dickinson | 2008-02-29 | 1 | -0/+240 |
|
|
* | Remove duplicate 'import re' in decimal.py | Mark Dickinson | 2008-02-24 | 1 | -2/+1 |
|
|
* | Fix decimal repr which should have used single quotes like other reprs. | Raymond Hettinger | 2008-02-14 | 1 | -242/+242 |
|
|
* | Bring decimal a bit closer to the spec for Reals. | Raymond Hettinger | 2008-02-12 | 1 | -0/+14 |
|
|
* | Typos in decimal comment and documentation | Mark Dickinson | 2008-02-10 | 1 | -1/+1 |
|
|
* | Issue 1979: Make Decimal comparisons (other than !=, ==) involving NaN | Mark Dickinson | 2008-02-06 | 1 | -39/+110 |
|
|
* | Add support for trunc(). | Raymond Hettinger | 2008-01-24 | 1 | -0/+2 |
|
|
* | Docstring typos | Andrew M. Kuchling | 2008-01-16 | 1 | -3/+3 |
|
|
* | Issue 1780: Allow leading and trailing whitespace in Decimal constructor, | Mark Dickinson | 2008-01-12 | 1 | -3/+14 |
|
|
* | Have Decimal.as_tuple return a named tuple. | Raymond Hettinger | 2008-01-11 | 1 | -1/+7 |
|
|
* | Issue #1757: The hash of a Decimal instance is no longer affected | Facundo Batista | 2008-01-08 | 1 | -3/+11 |
|
|
* | Some minor cleanups. Thanks Mark Dickinson. | Facundo Batista | 2007-12-19 | 1 | -34/+19 |
|
|
* | Removed the private _rounding_decision: it was not needed, and the code | Facundo Batista | 2007-12-17 | 1 | -94/+38 |
|
|
* | fma speedup by avoiding to create a Context. Thanks Mark Dickinson. | Facundo Batista | 2007-12-04 | 1 | -16/+31 |
|
|
* | Faster _fix function, and some reordering for a more elegant | Facundo Batista | 2007-12-03 | 1 | -52/+47 |
|
|
* | Speedup and cleaning of __str__. Thanks Mark Dickinson. | Facundo Batista | 2007-12-03 | 1 | -71/+41 |
|
|
* | Reordering of __new__ to minimize isinstance() calls to most | Facundo Batista | 2007-11-30 | 1 | -55/+56 |
|
|
* | Major change in the internal structure of the Decimal | Facundo Batista | 2007-11-23 | 1 | -302/+219 |
|
|
* | The constructor from tuple was way too permissive: it allowed bad | Facundo Batista | 2007-10-19 | 1 | -10/+36 |
|
|
* | Added a class to store the digits of log(10), so that they can be made | Facundo Batista | 2007-10-02 | 1 | -16/+49 |
|
|
* | Made the various is_* operations return booleans. This was discussed | Facundo Batista | 2007-10-02 | 1 | -112/+95 |
|
|
* | Issue #1772851. Optimization of __hash__ to behave better for big big | Facundo Batista | 2007-09-19 | 1 | -4/+11 |
|
|
* | Speed up of the various division operations (remainder, divide, | Facundo Batista | 2007-09-18 | 1 | -161/+139 |
|
|
* | The methods always return Decimal classes, even if they're | Facundo Batista | 2007-09-17 | 1 | -34/+38 |
|
|
* | Put the parameter watchexp back in (changed watchexp from an int | Facundo Batista | 2007-09-13 | 1 | -2/+13 |
|
|
* | Merged the decimal-branch (revisions 54886 to 58140). Decimal is now | Facundo Batista | 2007-09-13 | 1 | -702/+2846 |
|
|
* | When passed a bad formed literal to Decimal, now we have a | Facundo Batista | 2007-08-15 | 1 | -1/+2 |
|
|
* | Whitespace normalization. Ugh, we really need to do this more often. | Neal Norwitz | 2007-04-25 | 1 | -4/+4 |
|
|
* | General clean-up. Lot of margin corrections, comments, some typos. | Facundo Batista | 2007-04-10 | 1 | -159/+170 |
|
|
* | Fix docstring bug | Raymond Hettinger | 2007-02-08 | 1 | -1/+1 |
|
|
* | Add missing word in comment | Neal Norwitz | 2006-09-02 | 1 | -1/+1 |
|
|
* | Make decimal.ContextManager a private implementation detail of decimal.localc... | Nick Coghlan | 2006-09-02 | 1 | -24/+5 |
|
|
* | Fix the wrongheaded implementation of context management in the decimal modul... | Nick Coghlan | 2006-08-31 | 1 | -15/+65 |
|
|
* | Revert r50706 (Whitespace normalization) and | Martin v. Löwis | 2006-07-19 | 1 | -205/+184 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-07-18 | 1 | -6/+6 |
|
|
* | Comments and docs cleanups, and some little fixes, provided by Santiágo Pere... | Facundo Batista | 2006-07-18 | 1 | -184/+205 |
|
|