summaryrefslogtreecommitdiff
path: root/Lib/decimal.py
Commit message (Expand)AuthorAgeFilesLines
* Merge from 3.3.Stefan Krah2013-11-241-3/+1
|\
| * merge from 3.3Senthil Kumaran2013-09-071-1/+1
| |\
| * | Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a)Brett Cannon2013-07-041-4/+4
| * | Issue #18200: Update the stdlib (except tests) to useBrett Cannon2013-06-131-4/+4
| * | Merge 3.3.Stefan Krah2013-05-291-1/+1
| |\ \
| * \ \ Merge 3.3.Stefan Krah2012-12-151-6/+6
| |\ \ \
| * | | | Issue #13701: Fix decorator avoidance (due to desire for Python 2.3 compatibi...Mark Dickinson2012-10-311-3/+1
* | | | | 1) Prepare libmpdec for the 2.4.0 release. None of the following changes aff...Stefan Krah2013-11-241-0/+1
| |_|_|/ |/| | |
* | | | Fix the dead link of IEEE_854-1987 standard with the Wikipedia entry.Senthil Kumaran2013-09-071-1/+1
| |_|/ |/| |
* | | Issue #17768: Support newline fill character in decimal.py and NUL fillStefan Krah2013-05-291-1/+1
| |/ |/|
* | Issue #15783: Except for the number methods, the C version of decimal nowStefan Krah2012-12-151-6/+6
|/
* Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.Mark Dickinson2012-08-241-1/+7
* Use the same exception hierarchy as decimal.py. FloatOperation now alsoStefan Krah2012-03-231-1/+1
* Issue #7652: Integrate the decimal floating point libmpdec library to speedStefan Krah2012-03-211-31/+163
* Issue #13248, issue #8540: Remove deprecated Context._clamp attribute from De...Mark Dickinson2011-10-241-22/+0
* Issue #12080: Fix a performance issue in Decimal._power_exact that causes som...Mark Dickinson2011-06-041-38/+81
* Issue #12079: Decimal(0).fma(Decimal('inf'), 'not a number') should give a Ty...Mark Dickinson2011-05-221-1/+1
* Issue #11830: Remove unnecessary introspection code in the decimal module.Alexander Belopolsky2011-04-121-17/+14
* #11515: Merge with 3.1.Ezio Melotti2011-03-151-1/+1
|\
| * #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* | Merge #11131Mark Dickinson2011-03-121-8/+11
|\ \ | |/
| * Issue 11131: Fix sign of zero result on decimal.Decimal plus and minus operat...Mark Dickinson2011-03-121-8/+11
| * Merged revisions 82654 via svnmerge fromMark Dickinson2010-07-081-13/+31
| * Merged revisions 82646,82649-82650 via svnmerge fromMark Dickinson2010-07-081-9/+12
| * Merged revisions 81352 via svnmerge fromStefan Krah2010-05-191-2/+2
| * Merged revisions 80755 via svnmerge fromMark Dickinson2010-05-041-43/+83
| * Merged revisions 77937 via svnmerge fromBenjamin Peterson2010-02-031-2/+2
| * Merged revisions 77326 via svnmerge fromMark Dickinson2010-01-061-0/+7
| * Merged revisions 75947 via svnmerge fromMark Dickinson2009-10-291-9/+30
| * Merged revisions 75562 via svnmerge fromMark Dickinson2009-10-201-1/+1
| * Merged revisions 75276 via svnmerge fromMark Dickinson2009-10-071-1/+2
| * Merged revisions 74709 via svnmerge fromMark Dickinson2009-09-081-3/+2
| * Merged revisions 74706 via svnmerge fromMark Dickinson2009-09-071-1/+1
| * Merged revisions 74566 via svnmerge fromMark Dickinson2009-08-281-2/+5
| * Merged revisions 74279 via svnmerge fromMark Dickinson2009-08-021-17/+10
* | Get command-line doctest of Lib/decimal.py to work again.Raymond Hettinger2011-02-011-2/+2
* | Add link to specification.Raymond Hettinger2010-11-301-0/+1
* | Replace _nbits() with int.bit_length().Raymond Hettinger2010-11-271-17/+1
* | Issue #7094: Add alternate ('#') flag to __format__ methods for float, comple...Eric Smith2010-11-251-2/+3
* | Revert r86517Raymond Hettinger2010-11-211-1/+1
* | Issue #10356: hash(Decimal("sNaN")) now raises ValueError instead of TypeError.Stefan Krah2010-11-181-1/+1
* | Issue #10356: Decimal(-1).__hash__() should equal hash(Decimal(-1)).Stefan Krah2010-11-171-1/+2
* | Issue #9136: Profiling Decimal gave 'dictionary changed size during iteration'.Mark Dickinson2010-07-081-13/+31
* | Fix misplaced exactness check that was causing unnecessary work in Decimal.__...Mark Dickinson2010-07-081-3/+4
* | Fix a performance issue in Decimal.pow. Thanks Stefan Krah for finding this.Mark Dickinson2010-07-081-6/+8
* | Fix mild type confusion in decimal module docstring.Mark Dickinson2010-06-121-1/+2
* | Fix typo in docstring.Mark Dickinson2010-06-111-1/+1
* | Issue #8188: Comparisons between Decimal objects and other numericMark Dickinson2010-06-111-6/+37
* | Issue #8188: Introduce a new scheme for computing hashes of numbersMark Dickinson2010-05-231-48/+32
* | #Issue 8540: Make Context._clamp attribute public in decimal module.Mark Dickinson2010-05-221-15/+39