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 debedb, mark.dickinson, rhettinger, vstinner
Date 2009-02-27.11:50:57
SpamBayes Score 3.2285683e-08
Marked as misclassified No
Message-id <1235735459.77.0.230031924587.issue5377@psf.upfronthosting.co.za>
In-reply-to
Content
For anyone who does care about this, it should be noted that
the Fraction type has similar issues.  The following comes from Python
2.7 on a 64-bit machine:

>>> int(Fraction(2**63-1))
9223372036854775807L
>>> int(2**63-1)
9223372036854775807
History
Date User Action Args
2009-02-27 11:50:59mark.dickinsonsetrecipients: + mark.dickinson, rhettinger, vstinner, debedb
2009-02-27 11:50:59mark.dickinsonsetmessageid: <1235735459.77.0.230031924587.issue5377@psf.upfronthosting.co.za>
2009-02-27 11:50:57mark.dickinsonlinkissue5377 messages
2009-02-27 11:50:57mark.dickinsoncreate