summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-03-17 23:12:51 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-03-17 23:12:51 (GMT)
commit79f52039fe181d0f98b056b0b312a9bb42a59526 (patch)
tree29bf81a575de0cef469d3747b4ae4d87fd2e279b /Misc
parent9c59fe0714b239939f2f5201ef22ce0341fb159f (diff)
downloadcpython-79f52039fe181d0f98b056b0b312a9bb42a59526.zip
cpython-79f52039fe181d0f98b056b0b312a9bb42a59526.tar.gz
cpython-79f52039fe181d0f98b056b0b312a9bb42a59526.tar.bz2
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. ........
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 0c2236e..e289c18 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,9 @@ Core and Builtins
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.