Author eric.smith
Recipients
Date 2007-03-05.02:42:17
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
This is the correct behavior:
>>> '%200.200g' % 1.0
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
OverflowError: formatted float is too long (precision too large?)

But 'G' is handled differently:
>>> '%200.200G' % 1.0
'                                                                                                                                                                                                       1'

'G' should give the same OverflowError as 'g'.
History
Date User Action Args
2007-08-23 14:52:16adminlinkissue1673757 messages
2007-08-23 14:52:16admincreate