Merged revisions 70439 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70439 | mark.dickinson | 2009-03-17 23:03:46 +0000 (Tue, 17 Mar 2009) | 3 lines
Issue #2110: Add support for thousands separator and 'n' format specifier
to Decimal __format__ method.
........
diff --git a/Misc/NEWS b/Misc/NEWS
index 0c2236e..e289c18 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,9 @@
Library
-------
+- Issue #2110: Add support for thousands separator and 'n' type
+ specifier to Decimal.__format__
+
- Fix Decimal.__format__ bug that swapped the meanings of the '<' and
'>' alignment characters.