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 Aaron.Meurer
Recipients Aaron.Meurer
Date 2017-10-03.21:46:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1507067181.62.0.213398074469.issue31684@psf.upfronthosting.co.za>
In-reply-to
Content
>>> '{:+.19e}'.format(0.)
'+0.0000000000000000000e+00'
>>> import decimal
>>> '{:+.19e}'.format(decimal.Decimal(0))
'+0.0000000000000000000e+19'

Note the decimal uses e+19 instead of e+00. Obviously it's still mathematically correct, but it's annoying to have anything other than e+00 for a 0 value.
History
Date User Action Args
2017-10-03 21:46:21Aaron.Meurersetrecipients: + Aaron.Meurer
2017-10-03 21:46:21Aaron.Meurersetmessageid: <1507067181.62.0.213398074469.issue31684@psf.upfronthosting.co.za>
2017-10-03 21:46:21Aaron.Meurerlinkissue31684 messages
2017-10-03 21:46:21Aaron.Meurercreate