[issue2648] decimal receipe moneyfmt suppress leading 0

2008-04-17 Thread Raymond Hettinger
Raymond Hettinger <[EMAIL PROTECTED]> added the comment: Thanks for the contribution. Changed to be non-optional and applied as r62364 but not backported. -- resolution: -> accepted status: open -> closed __ Tracker <[EMAIL PROTECTED]>

[issue2648] decimal receipe moneyfmt suppress leading 0

2008-04-17 Thread Raymond Hettinger
Changes by Raymond Hettinger <[EMAIL PROTECTED]>: -- assignee: georg.brandl -> rhettinger nosy: +rhettinger type: -> feature request versions: +Python 2.6 -Python 2.5 __ Tracker <[EMAIL PROTECTED]> _

[issue2648] decimal receipe moneyfmt suppress leading 0

2008-04-17 Thread Carsten Grohmann
New submission from Carsten Grohmann <[EMAIL PROTECTED]>: The current version of the receipe moneyfmt doesn't have a leading "0" for 1 < value < -1. The attached patch adds a new parameter "zero". The parameter is empty per default and can set to "0" print a leading "0". The examples are upda