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 mbecker
Recipients arigo, gregory.p.smith, gvanrossum, jcea, mbecker, tlesher
Date 2008-03-24.14:58:55
SpamBayes Score 0.5384287
Marked as misclassified No
Message-id <1206370736.92.0.367296385497.issue1202@psf.upfronthosting.co.za>
In-reply-to
Content
In case it isn't obvious the work around for pre 3.0 to get the right
sum is something like:
x=zlib.adler32(str)
if x < 0:
    x=(long(x) + 4294967296L) # 2^32, long may or may not be needed here
History
Date User Action Args
2008-03-24 14:58:57mbeckersetspambayes_score: 0.538429 -> 0.5384287
recipients: + mbecker, gvanrossum, arigo, gregory.p.smith, jcea, tlesher
2008-03-24 14:58:56mbeckersetspambayes_score: 0.538429 -> 0.538429
messageid: <1206370736.92.0.367296385497.issue1202@psf.upfronthosting.co.za>
2008-03-24 14:58:55mbeckerlinkissue1202 messages
2008-03-24 14:58:55mbeckercreate