commit | b065e52bc284c2c28a967c4e82aa7ece6d09c562 | [log] [tgz] |
---|---|---|
author | Mark Dickinson <dickinsm@gmail.com> | Tue Mar 17 18:01:03 2009 +0000 |
committer | Mark Dickinson <dickinsm@gmail.com> | Tue Mar 17 18:01:03 2009 +0000 |
tree | 446dec7a95dafe2d40c85f89ae0fb1aa9fc076a3 | |
parent | 8cbe9556cf4ad10c0ee2636f43f4f3675a8c6203 [diff] [blame] |
Fix bug in Decimal __format__ method that swapped left and right alignment.
diff --git a/Misc/NEWS b/Misc/NEWS index 9432295..c506071 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -174,6 +174,9 @@ 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.