Issue #7633: Context method in the decimal module (with the exception
of the 'canonical' and 'is_canonical' methods) now consistently accept
integer arguments wherever a Decimal instance is accepted. Thanks
Juan José Conti for the patch.
diff --git a/Misc/NEWS b/Misc/NEWS
index fbcb23a..b548a91 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -15,6 +15,12 @@
Library
-------
+- Issue #7633: In the decimal module, Context class methods (with the
+ exception of canonical and is_canonical) now accept instances of int
+ and long wherever a Decimal instance is accepted, and implicitly
+ convert that argument to Decimal. Previously only some arguments
+ were converted.
+
- Issue #6003: add an argument to ``zipfile.Zipfile.writestr`` to
specify the compression type.