This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.smith
Recipients eric.smith, mark.dickinson, skrah
Date 2009-09-07.15:31:39
SpamBayes Score 5.044513e-05
Marked as misclassified No
Message-id <1252337500.71.0.782566612854.issue6850@psf.upfronthosting.co.za>
In-reply-to
Content
The format string is valid. Sorry for the noise. The fill character of
'a' threw me off.

With my suggested change to decimal.py, line 5595, in py3k:
>>> from decimal import *
>>> format(Decimal("0.12345"), "a=-7.0")
'aaaa0.1'
>>> format(0.12345, "a=-7.0")
'aaaa0.1'
>>> 

If float has the wrong alignment, could you open another issue with an
example?
History
Date User Action Args
2009-09-07 15:31:40eric.smithsetrecipients: + eric.smith, mark.dickinson, skrah
2009-09-07 15:31:40eric.smithsetmessageid: <1252337500.71.0.782566612854.issue6850@psf.upfronthosting.co.za>
2009-09-07 15:31:39eric.smithlinkissue6850 messages
2009-09-07 15:31:39eric.smithcreate