Message 79526 - Python tracker (original) (raw)

Message79526

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:00 gregory.p.smith set recipients: + gregory.p.smith, beazley
2009-01-10 03:07:00 gregory.p.smith set messageid: 1231556820.05.0.440456737261.issue4903@psf.upfronthosting.co.za
2009-01-10 03:06:59 gregory.p.smith link issue4903 messages
2009-01-10 03:06:58 gregory.p.smith create