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 hagen
Recipients hagen
Date 2008-07-18.20:09:18
SpamBayes Score 0.011816459
Marked as misclassified No
Message-id <1216411761.22.0.510174949199.issue3411@psf.upfronthosting.co.za>
In-reply-to
Content
This happens with an empty type field in the format specification:

>>> "{0:1}".format(-1.23)
'.0-1.23'

With type "g" it's ok:

>>> "{0:1g}".format(-1.23)
'-1.23'
History
Date User Action Args
2008-07-18 20:09:22hagensetspambayes_score: 0.0118165 -> 0.011816459
recipients: + hagen
2008-07-18 20:09:21hagensetspambayes_score: 0.0118165 -> 0.0118165
messageid: <1216411761.22.0.510174949199.issue3411@psf.upfronthosting.co.za>
2008-07-18 20:09:19hagenlinkissue3411 messages
2008-07-18 20:09:19hagencreate