summaryrefslogtreecommitdiffstats
path: root/Lib/decimal.py
Commit message (Expand)AuthorAgeFilesLines
* Some minor cleanups. Thanks Mark Dickinson.Facundo Batista2007-12-191-34/+19
* Removed the private _rounding_decision: it was not needed, and the codeFacundo Batista2007-12-171-94/+38
* fma speedup by avoiding to create a Context. Thanks Mark Dickinson.Facundo Batista2007-12-041-16/+31
* Faster _fix function, and some reordering for a more elegantFacundo Batista2007-12-031-52/+47
* Speedup and cleaning of __str__. Thanks Mark Dickinson.Facundo Batista2007-12-031-71/+41
* Reordering of __new__ to minimize isinstance() calls to mostFacundo Batista2007-11-301-55/+56
* Major change in the internal structure of the DecimalFacundo Batista2007-11-231-302/+219
* The constructor from tuple was way too permissive: it allowed badFacundo Batista2007-10-191-10/+36
* Added a class to store the digits of log(10), so that they can be madeFacundo Batista2007-10-021-16/+49
* Made the various is_* operations return booleans. This was discussedFacundo Batista2007-10-021-112/+95
* Issue #1772851. Optimization of __hash__ to behave better for big bigFacundo Batista2007-09-191-4/+11
* Speed up of the various division operations (remainder, divide,Facundo Batista2007-09-181-161/+139
* The methods always return Decimal classes, even if they'reFacundo Batista2007-09-171-34/+38
* Put the parameter watchexp back in (changed watchexp from an intFacundo Batista2007-09-131-2/+13
* Merged the decimal-branch (revisions 54886 to 58140). Decimal is nowFacundo Batista2007-09-131-702/+2846
* When passed a bad formed literal to Decimal, now we have aFacundo Batista2007-08-151-1/+2
* Whitespace normalization. Ugh, we really need to do this more often.Neal Norwitz2007-04-251-4/+4
* General clean-up. Lot of margin corrections, comments, some typos.Facundo Batista2007-04-101-159/+170
* Fix docstring bugRaymond Hettinger2007-02-081-1/+1
* Add missing word in commentNeal Norwitz2006-09-021-1/+1
* Make decimal.ContextManager a private implementation detail of decimal.localc...Nick Coghlan2006-09-021-24/+5
* Fix the wrongheaded implementation of context management in the decimal modul...Nick Coghlan2006-08-311-15/+65
* Revert r50706 (Whitespace normalization) andMartin v. Löwis2006-07-191-205/+184
* Whitespace normalization.Tim Peters2006-07-181-6/+6
* Comments and docs cleanups, and some little fixes, provided by Santiágo Pere...Facundo Batista2006-07-181-184/+205
* Typo fix.Georg Brandl2006-05-111-1/+1
* Finish bringing SVN into line with latest version of PEP 343 by getting rid o...Nick Coghlan2006-05-031-3/+3
* Get rid of __context__, per the latest changes to PEP 343 and python-devGuido van Rossum2006-05-021-1/+1
* Move the PEP 343 documentation and implementation closer to theNick Coghlan2006-04-251-2/+2
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-2/+0
* Updates to the with-statement:Guido van Rossum2006-02-281-0/+29
* bug [ 1266296 ] Mistakes in decimal.Context.subtract documentationGeorg Brandl2005-08-221-1/+1
* Apply the _is_special guard.Raymond Hettinger2005-06-201-12/+13
* Minor namespace clean-up.Raymond Hettinger2005-06-071-2/+2
* * Fix decimal's handling of foreign types. Now returns NotImplementedRaymond Hettinger2005-03-271-4/+39
* Bug #1163325: "special" decimals aren't hashableRaymond Hettinger2005-03-151-0/+4
* Fix small grammatical error in a docstring.Brett Cannon2005-03-011-1/+1
* Replace list of constants with tuples of constants.Raymond Hettinger2005-02-061-1/+1
* Bug #1083645Raymond Hettinger2004-12-181-2/+13
* SF bug #1071588 coercing decimal to int doesn't work between -1 and 1Raymond Hettinger2004-11-241-7/+7
* SF patch #1053375.Raymond Hettinger2004-10-271-63/+18
* Very few little improvements.Facundo Batista2004-10-261-10/+8
* SF bug #1048728: Bug fixes and cleanup for decimal.pyRaymond Hettinger2004-10-201-13/+7
* Don't use mutable values for method defaults.Raymond Hettinger2004-10-121-2/+6
* SF patch #1043218Raymond Hettinger2004-10-091-52/+39
* Use floor division operator.Raymond Hettinger2004-09-271-3/+3
* SF patch #1020845: Decimal performance enhancementsRaymond Hettinger2004-09-191-500/+437
* Establish policies with respect to 2.3 compatibilty and treated specRaymond Hettinger2004-08-191-0/+9
* Revise max() and min() to comply with the 8/2/2004 update to the specificationRaymond Hettinger2004-08-171-19/+65
* * Context.copy() now makes a deepcopy.Raymond Hettinger2004-08-081-12/+21