summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-03-17 23:03:46 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-03-17 23:03:46 (GMT)
commit277859d5910782cc31bb27f2472893b8382ad391 (patch)
tree1992a663205d997ba06db1113284828d6a1654c0 /Misc
parented3558b3343d3af563829693483b28a4003711c8 (diff)
downloadcpython-277859d5910782cc31bb27f2472893b8382ad391.zip
cpython-277859d5910782cc31bb27f2472893b8382ad391.tar.gz
cpython-277859d5910782cc31bb27f2472893b8382ad391.tar.bz2
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 c506071..c59ba94 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -174,6 +174,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.