Issue #6595: Allow Decimal constructor to accept non-European decimal digits, as recommended by the specification.
diff --git a/Misc/NEWS b/Misc/NEWS
index 7e2c653..3c06bb8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -63,6 +63,10 @@
 Library
 -------
 
+- Issue #6595: The Decimal constructor now allows arbitrary Unicode
+  decimal digits in input, as recommended by the standard.  Previously
+  it was restricted to accepting [0-9].
+
 - Issue #6106: telnetlib.Telnet.process_rawq doesn't handle default WILL/WONT
   DO/DONT correctly.