[New-bugs-announce] [issue4903] binascii.crc32()

David M. Beazley report at bugs.python.org
Sat Jan 10 03:57:58 CET 2009


New submission from David M. Beazley <beazley at users.sourceforge.net>:

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

----------
components: Library (Lib)
messages: 79524
nosy: beazley
severity: normal
status: open
title: binascii.crc32()
type: behavior
versions: Python 2.6, Python 3.0

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue4903>
_______________________________________


More information about the New-bugs-announce mailing list