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 jerub
Recipients
Date 2005-03-01.23:53:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=100823

%ld doesn't help. see the following example:

>>> "%.f" % float(2**31)
'2147483648'
>>> "%ld" % float(2**31)
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
TypeError: int argument required
History
Date User Action Args
2008-01-20 09:57:35adminlinkissue1153226 messages
2008-01-20 09:57:35admincreate