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 mark.dickinson
Recipients ajaksu2, eric.smith, gvanrossum, mark, mark.dickinson
Date 2009-05-02.18:34:47
SpamBayes Score 1.4382202e-08
Marked as misclassified No
Message-id <1241289289.26.0.250193245047.issue1588@psf.upfronthosting.co.za>
In-reply-to
Content
One comment on the new complex formatting.  I now get (in py3k)

>>> from math import pi, e
>>> format(complex(pi,e), '<')
'(3.14159+2.71828j)'
>>> format(complex(pi,e), '')
'(3.14159265359+2.71828182846j)'

I understand why this is happening, but again I think that alignment 
flags shouldn't change the form of the number itself.  Would it be 
reasonable to have the empty format code always use a precision of 12?
History
Date User Action Args
2009-05-02 18:34:49mark.dickinsonsetrecipients: + mark.dickinson, gvanrossum, eric.smith, ajaksu2, mark
2009-05-02 18:34:49mark.dickinsonsetmessageid: <1241289289.26.0.250193245047.issue1588@psf.upfronthosting.co.za>
2009-05-02 18:34:48mark.dickinsonlinkissue1588 messages
2009-05-02 18:34:47mark.dickinsoncreate