[issue5534] Decimal __format__ reverses meaning of '<' and '>' alignment specs

2009-03-22 Thread Mark Dickinson
Mark Dickinson added the comment: Yes, it should be fixed already in the release maintenance branches. See r70430 through r70433. -- resolution: -> out of date status: open -> closed ___ Python tracker __

[issue5534] Decimal __format__ reverses meaning of '<' and '>' alignment specs

2009-03-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: Mark, can you confirm that this is out of date? -- nosy: +rhettinger ___ Python tracker ___ ___ P

[issue5534] Decimal __format__ reverses meaning of '<' and '>' alignment specs

2009-03-21 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- assignee: -> marketdickinson nosy: +marketdickinson ___ Python tracker ___ ___ Python-bugs-list mail

[issue5534] Decimal __format__ reverses meaning of '<' and '>' alignment specs

2009-03-21 Thread Donald O'Donnell
New submission from Donald O'Donnell : decimal.py ver 2.6: line 5474 is "if align == '<':" s/b "if align == '>':" line 5476 is "if align == '>':" s/b "if align == '<':" decimal.py ver 3.01: line 5578 is "if align == '<':" s/b "if align == '>':" line 5580 is "if align == '>'