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 beazley
Recipients beazley
Date 2009-01-10.02:57:55
SpamBayes Score 0.17357327
Marked as misclassified No
Message-id <1231556278.06.0.571264691147.issue4903@psf.upfronthosting.co.za>
In-reply-to
Content
The result of binascii.crc32() is different on the same input in Python 
2.6/3.0.  For example:

Python 2.6:

>>> binascii.crc32('Hello')
-137262718

Python 3.0:

>>> binascii.crc32(b'Hello')
4157704578
History
Date User Action Args
2009-01-10 02:57:58beazleysetrecipients: + beazley
2009-01-10 02:57:58beazleysetmessageid: <1231556278.06.0.571264691147.issue4903@psf.upfronthosting.co.za>
2009-01-10 02:57:56beazleylinkissue4903 messages
2009-01-10 02:57:55beazleycreate