index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
decimal.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix the dead link of IEEE_854-1987 standard with the Wikipedia entry.
Senthil Kumaran
2013-09-08
1
-1/+1
*
Issue #15544: Fix Decimal.__float__ to work with payload-carrying NaNs.
Mark Dickinson
2012-08-24
1
-1/+7
*
Update link to the decimal arithmetic specification.
Raymond Hettinger
2011-08-25
1
-1/+1
*
Issue #12080: Fix a performance issue in Decimal._power_exact that caused som...
Mark Dickinson
2011-06-04
1
-38/+81
*
Neaten-up the fix to issue 11830
Raymond Hettinger
2011-04-12
1
-11/+11
*
Issue #11830: Remove unnecessary introspection code in the decimal module.
Raymond Hettinger
2011-04-12
1
-14/+11
*
#11515: fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-15
1
-1/+1
*
Issue 11131: Fix sign of zero result on plus and minus operations in ROUND_FL...
Mark Dickinson
2011-03-12
1
-8/+11
*
Merged revisions 82654 via svnmerge from
Mark Dickinson
2010-07-08
1
-15/+31
*
Merged revisions 82646,82649-82650 via svnmerge from
Mark Dickinson
2010-07-08
1
-9/+12
*
Fix typos in docstrings.
Stefan Krah
2010-05-19
1
-2/+2
*
Issue #8567: Fix incorrect precedence of signals in Decimal module.
Mark Dickinson
2010-05-04
1
-43/+83
*
Issue 8257: Decimal constructor to accept float.
Raymond Hettinger
2010-04-02
1
-2/+6
*
Issue #7279: Make Decimal('nan') hashable. Decimal('snan') remains unhashable.
Mark Dickinson
2010-04-02
1
-4/+20
*
Issue #7279: Make comparisons involving a Decimal sNaN signal InvalidOperation.
Mark Dickinson
2010-04-02
1
-6/+9
*
Issue #2531: Make float-to-decimal comparisons return correct results.
Mark Dickinson
2010-04-02
1
-13/+25
*
Doctest fixes for decimal.py: add an integer-argument doctest for logical_in...
Mark Dickinson
2010-02-18
1
-18/+20
*
Issue #7633: Context method in the decimal module (with the exception
Mark Dickinson
2010-02-18
1
-18/+340
*
compare types with is not ==
Benjamin Peterson
2010-01-25
1
-2/+2
*
mention from_float() in error message
Benjamin Peterson
2010-01-25
1
-2/+2
*
Add missing docstring for Context.divmod. Thanks Juan José Conti.
Mark Dickinson
2010-01-06
1
-0/+7
*
Issue #7233: Fix Decimal.shift and Decimal.rotate methods for
Mark Dickinson
2009-10-29
1
-8/+10
*
Issue #7233: A number of two-argument Decimal methods were failing to
Mark Dickinson
2009-10-29
1
-1/+20
*
Issue #7099: Decimal.is_normal should return True for all nonzero
Mark Dickinson
2009-10-20
1
-1/+1
*
Issue #7048: logb should round its result when that result doesn't fit
Mark Dickinson
2009-10-07
1
-1/+2
*
Issue #6857: Fix Decimal formatting to be consistent with existing float
Mark Dickinson
2009-09-08
1
-1/+4
*
#Issue 6795: Fix infinite recursion in long(Decimal('nan')); change int(Dec...
Mark Dickinson
2009-09-07
1
-3/+2
*
Issue #6850: Fix bug in Decimal._parse_format_specifier for formats
Mark Dickinson
2009-09-07
1
-1/+1
*
Issue #6794: Fix handling of NaNs in Decimal.compare_total and
Mark Dickinson
2009-08-28
1
-2/+5
*
Issue #6595: Allow Decimal constructor to accept non-European decimal
Mark Dickinson
2009-08-02
1
-17/+10
*
Update spec version number.
Raymond Hettinger
2009-04-27
1
-1/+1
*
Fix bug in _insert_thousands_sep: too much zero padding could be
Mark Dickinson
2009-03-18
1
-2/+1
*
Issue #2110: Add support for thousands separator and 'n' format specifier
Mark Dickinson
2009-03-17
1
-83/+202
*
Fix bug in Decimal __format__ method that swapped left and right
Mark Dickinson
2009-03-17
1
-2/+2
*
Add a version tag to the decimal module.
Raymond Hettinger
2009-03-10
1
-0/+2
*
Register decimals as numbers.Number
Raymond Hettinger
2009-02-03
1
-0/+7
*
Remove uses of cmp from the decimal module.
Mark Dickinson
2009-01-25
1
-3/+15
*
More Python 2.3 compatibility fixes for decimal.py.
Mark Dickinson
2009-01-04
1
-4/+4
*
Fix Decimal.from_float to use valid Python 2.3 syntax, as per
Mark Dickinson
2009-01-04
1
-3/+11
*
Reapply r68191.
Raymond Hettinger
2009-01-03
1
-56/+56
*
Issue 4796: Add from_float methods to the decimal module.
Raymond Hettinger
2009-01-03
1
-56/+106
*
Issue #4812: further renaming of internal Decimal constants, for clarity.
Mark Dickinson
2009-01-03
1
-56/+56
*
Issue #4812: add missing underscore prefix to some internal-use-only
Mark Dickinson
2009-01-02
1
-63/+63
*
Issue #4084: Fix max, min, max_mag and min_mag Decimal methods to
Facundo Batista
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
[next]