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 Jakub Szewczyk, eric.smith
Date 2018-06-01.10:40:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527849652.57.0.682650639539.issue33730@psf.upfronthosting.co.za>
In-reply-to
Content
'n' is defined as the same as 'g', for floats (modulo the locale-specific characters, of course):

>>> format(1.89, '.2n')
'1.9'
>>> format(1.89, '.2g')
'1.9'
History
Date User Action Args
2018-06-01 10:40:52eric.smithsetrecipients: + eric.smith, Jakub Szewczyk
2018-06-01 10:40:52eric.smithsetmessageid: <1527849652.57.0.682650639539.issue33730@psf.upfronthosting.co.za>
2018-06-01 10:40:52eric.smithlinkissue33730 messages
2018-06-01 10:40:52eric.smithcreate