summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-03-17 18:10:15 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-03-17 18:10:15 (GMT)
commitad41634313b291298935ff1b7044fc95d86da2be (patch)
tree3c4b8b0f7a473e68cc4c46b98b4cb71ff3dc3a2e /Misc/NEWS
parent44c5481941fb9595c23d796b09dd9c34e0357fa5 (diff)
downloadcpython-ad41634313b291298935ff1b7044fc95d86da2be.zip
cpython-ad41634313b291298935ff1b7044fc95d86da2be.tar.gz
cpython-ad41634313b291298935ff1b7044fc95d86da2be.tar.bz2
Merged revisions 70430 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r70430 | mark.dickinson | 2009-03-17 18:01:03 +0000 (Tue, 17 Mar 2009) | 3 lines Fix bug in Decimal __format__ method that swapped left and right alignment. ........
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index afeb987..bae6e78 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -206,6 +206,9 @@ Core and Builtins
Library
-------
+- Fix Decimal.__format__ bug that swapped the meanings of the '<' and
+ '>' alignment characters.
+
- Issue #1222: locale.format() bug when the thousands separator is a space
character.