summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-10-29 12:11:18 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-10-29 12:11:18 (GMT)
commit6f3900163a50d04ecae173e2703f626f5daf8318 (patch)
tree44f8666f2bb15ad7cbeb2f41e740bc5a67c080bf /Misc
parent0c67312c5c0d5d44e065d2ecc5023d0e47f815ee (diff)
downloadcpython-6f3900163a50d04ecae173e2703f626f5daf8318.zip
cpython-6f3900163a50d04ecae173e2703f626f5daf8318.tar.gz
cpython-6f3900163a50d04ecae173e2703f626f5daf8318.tar.bz2
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/NEWS6
1 files changed, 4 insertions, 2 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5025700..85fdc21 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -427,8 +427,10 @@ Core and Builtins
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.
+- 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.