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 gregory.p.smith
Recipients beazley, gregory.p.smith
Date 2009-01-10.03:06:58
SpamBayes Score 0.23568366
Marked as misclassified No
Message-id <1231556820.05.0.440456737261.issue4903@psf.upfronthosting.co.za>
In-reply-to
Content
When treated as an unsigned 32bit value those are identical.

Guido prefers to keep Python 2.x always having signed values for the 
scattered crc functions.  We changed it for 3.0 because it makes more 
sense given that python these days no real fixed-bits numeric type.

See also

http://bugs.python.org/issue1202

I posted a workaround in there.  Always & the crc32() or adler32() 
return value with 0xFFFFFFFF.
History
Date User Action Args
2009-01-10 03:07:00gregory.p.smithsetrecipients: + gregory.p.smith, beazley
2009-01-10 03:07:00gregory.p.smithsetmessageid: <1231556820.05.0.440456737261.issue4903@psf.upfronthosting.co.za>
2009-01-10 03:06:59gregory.p.smithlinkissue4903 messages
2009-01-10 03:06:58gregory.p.smithcreate