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 benjamin.peterson
Recipients benjamin.peterson, pitrou
Date 2008-06-29.13:51:46
SpamBayes Score 0.013974755
Marked as misclassified No
Message-id <1214747508.21.0.174716118377.issue3236@psf.upfronthosting.co.za>
In-reply-to
Content
I suspect this is because of the transition from PyInt to PyLong:

Python 2.6b1+ (trunk:64580M, Jun 28 2008, 18:04:04)
[GCC 4.0.1 (Apple Computer, Inc. build 5370)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> int('2') is 2
True
>>> long('2') is 2
False
History
Date User Action Args
2008-06-29 13:51:48benjamin.petersonsetspambayes_score: 0.0139748 -> 0.013974755
recipients: + benjamin.peterson, pitrou
2008-06-29 13:51:48benjamin.petersonsetspambayes_score: 0.0139748 -> 0.0139748
messageid: <1214747508.21.0.174716118377.issue3236@psf.upfronthosting.co.za>
2008-06-29 13:51:47benjamin.petersonlinkissue3236 messages
2008-06-29 13:51:46benjamin.petersoncreate