| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | Typo fix. | Georg Brandl | 2006-05-11 | 1 | -1/+1 |
|
|
* | Finish bringing SVN into line with latest version of PEP 343 by getting rid o... | Nick Coghlan | 2006-05-03 | 1 | -3/+3 |
|
|
* | Get rid of __context__, per the latest changes to PEP 343 and python-dev | Guido van Rossum | 2006-05-02 | 1 | -1/+1 |
|
|
* | Move the PEP 343 documentation and implementation closer to the | Nick Coghlan | 2006-04-25 | 1 | -2/+2 |
|
|
* | Um, I thought I'd already checked this in. | Guido van Rossum | 2006-03-10 | 1 | -2/+0 |
|
|
* | Updates to the with-statement: | Guido van Rossum | 2006-02-28 | 1 | -0/+29 |
|
|
* | bug [ 1266296 ] Mistakes in decimal.Context.subtract documentation | Georg Brandl | 2005-08-22 | 1 | -1/+1 |
|
|
* | Apply the _is_special guard. | Raymond Hettinger | 2005-06-20 | 1 | -12/+13 |
|
|
* | Minor namespace clean-up. | Raymond Hettinger | 2005-06-07 | 1 | -2/+2 |
|
|
* | * Fix decimal's handling of foreign types. Now returns NotImplemented | Raymond Hettinger | 2005-03-27 | 1 | -4/+39 |
|
|
* | Bug #1163325: "special" decimals aren't hashable | Raymond Hettinger | 2005-03-15 | 1 | -0/+4 |
|
|
* | Fix small grammatical error in a docstring. | Brett Cannon | 2005-03-01 | 1 | -1/+1 |
|
|
* | Replace list of constants with tuples of constants. | Raymond Hettinger | 2005-02-06 | 1 | -1/+1 |
|
|
* | Bug #1083645 | Raymond Hettinger | 2004-12-18 | 1 | -2/+13 |
|
|
* | SF bug #1071588 coercing decimal to int doesn't work between -1 and 1 | Raymond Hettinger | 2004-11-24 | 1 | -7/+7 |
|
|
* | SF patch #1053375. | Raymond Hettinger | 2004-10-27 | 1 | -63/+18 |
|
|
* | Very few little improvements. | Facundo Batista | 2004-10-26 | 1 | -10/+8 |
|
|
* | SF bug #1048728: Bug fixes and cleanup for decimal.py | Raymond Hettinger | 2004-10-20 | 1 | -13/+7 |
|
|
* | Don't use mutable values for method defaults. | Raymond Hettinger | 2004-10-12 | 1 | -2/+6 |
|
|
* | SF patch #1043218 | Raymond Hettinger | 2004-10-09 | 1 | -52/+39 |
|
|
* | Use floor division operator. | Raymond Hettinger | 2004-09-27 | 1 | -3/+3 |
|
|
* | SF patch #1020845: Decimal performance enhancements | Raymond Hettinger | 2004-09-19 | 1 | -500/+437 |
|
|
* | Establish policies with respect to 2.3 compatibilty and treated spec | Raymond Hettinger | 2004-08-19 | 1 | -0/+9 |
|
|
* | Revise max() and min() to comply with the 8/2/2004 update to the specification | Raymond Hettinger | 2004-08-17 | 1 | -19/+65 |
|
|
* | * Context.copy() now makes a deepcopy. | Raymond Hettinger | 2004-08-08 | 1 | -12/+21 |
|
|