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 arigo
Recipients
Date 2005-03-17.12:21:29
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=4771

I am afraid that the same problem occurs all over the place, wherever long integers are accepted by built-in operations or functions.  Most of these places accept (and round) a float argument as well, though this is supposedly deprecated.  For example:

f = open('filename')
f.seek(999999999999)    # ok
f.seek(12.0)            # ok
f.seek(999999999999.0)  # OverflowError

Unless someone is willing to conduct a systematic review I believe it unlikely that it will get fixed, given the deprecation status.
History
Date User Action Args
2008-01-20 09:57:35adminlinkissue1153226 messages
2008-01-20 09:57:35admincreate