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 cjwelborn
Recipients cjwelborn, docs@python, eric.smith, jluscher
Date 2015-05-25.04:02:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1432526578.0.0.445211038392.issue24281@psf.upfronthosting.co.za>
In-reply-to
Content
You forgot the 'f' to specify that you want float formatting:

```
>>> '{:08.3f}'.format(12.34)

 '0012.340'
```
History
Date User Action Args
2015-05-25 04:02:58cjwelbornsetrecipients: + cjwelborn, eric.smith, docs@python, jluscher
2015-05-25 04:02:58cjwelbornsetmessageid: <1432526578.0.0.445211038392.issue24281@psf.upfronthosting.co.za>
2015-05-25 04:02:57cjwelbornlinkissue24281 messages
2015-05-25 04:02:57cjwelborncreate