Issue 1780: Allow leading and trailing whitespace in Decimal constructor,
when constructing from a string. Disallow trailing newlines in
Context.create_decimal.
diff --git a/Misc/NEWS b/Misc/NEWS
index e625c3c..51d2731 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -351,6 +351,10 @@
 Library
 -------
 
+- Issue #1780: The Decimal constructor now accepts arbitrary leading
+  and trailing whitespace when constructing from a string.
+  Context.create_decimal no longer accepts trailing newlines.
+
 - Decimal.as_tuple(), difflib.find_longest_match() and inspect functions
   that returned a tuple now return a named tuple.