diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-10-29 12:23:02 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-10-29 12:23:02 (GMT) |
commit | a2d1fe0b843b27130d0e3194ac2f517692e89c85 (patch) | |
tree | 6bee99768ef3f8354d19623705388b1e4d85bb25 /Misc | |
parent | cb9285cd3797aa6d33c8fad5f23125d74b4d4487 (diff) | |
download | cpython-a2d1fe0b843b27130d0e3194ac2f517692e89c85.zip cpython-a2d1fe0b843b27130d0e3194ac2f517692e89c85.tar.gz cpython-a2d1fe0b843b27130d0e3194ac2f517692e89c85.tar.bz2 |
Merged revisions 75943-75945 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r75943 | mark.dickinson | 2009-10-29 11:09:09 +0000 (Thu, 29 Oct 2009) | 1 line
Fix duplicate test numbers in extra.decTest
........
r75944 | mark.dickinson | 2009-10-29 12:04:00 +0000 (Thu, 29 Oct 2009) | 3 lines
Issue #7233: A number of two-argument Decimal methods were failing to
accept ints and longs for the second argument.
........
r75945 | mark.dickinson | 2009-10-29 12:11:18 +0000 (Thu, 29 Oct 2009) | 4 lines
Issue #7233: Fix Decimal.shift and Decimal.rotate methods for
arguments with more digits than the current context precision.
Bug reported by Stefan Krah.
........
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -120,6 +120,11 @@ C-API Library ------- +- Issue #7233: Fix a number of two-argument Decimal methods to make + sure that they accept an int or long as the second argument. Also + fix buggy handling of large arguments (those with coefficient longer + than the current precision) in shift and rotate. + - Issue #4750: Store the basename of the original filename in the gzip FNAME header as required by RFC 1952. |