Issue #7233: Fix Decimal.shift and Decimal.rotate methods for
arguments with more digits than the current context precision.
Bug reported by Stefan Krah.
diff --git a/Misc/NEWS b/Misc/NEWS
index 5025700..85fdc21 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -427,8 +427,10 @@
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.