[issue5481] Expand Decimal.__format__() support to include "n"

2009-03-17 Thread Mark Dickinson
Mark Dickinson added the comment: Closing as duplicate of issue 2110. -- resolution: -> duplicate status: open -> closed superseder: -> Implement __format__ for Decimal ___ Python tracker

[issue5481] Expand Decimal.__format__() support to include "n"

2009-03-13 Thread Eric Smith
Changes by Eric Smith : -- nosy: +eric.smith ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.

[issue5481] Expand Decimal.__format__() support to include "n"

2009-03-12 Thread Mark Dickinson
Mark Dickinson added the comment: Thanks---this is already on my list of things to get done for 3.1: see issue 2110. -- ___ Python tracker ___ _

[issue5481] Expand Decimal.__format__() support to include "n"

2009-03-12 Thread Raymond Hettinger
New submission from Raymond Hettinger : >>> from decimal import Decimal as D >>> format(D('1234.5'), "n") . . . ValueError: Invalid format specifier: n -- assignee: marketdickinson components: Library (Lib) messages: 83500 nosy: marketdickinson, rhettinger severity: normal status: open