Michael Becker <[EMAIL PROTECTED]> added the comment:

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

----------
nosy: +mbecker

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1202>
__________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to