Author: Justin Peel <[email protected]>
Branch: 
Changeset: r45410:2d192eaab45f
Date: 2011-07-06 13:49 -0600
http://bitbucket.org/pypy/pypy/changeset/2d192eaab45f/

Log:    unindented a line that shouldn't be indented in crc32 of the
        binascii module

diff --git a/lib_pypy/binascii.py b/lib_pypy/binascii.py
--- a/lib_pypy/binascii.py
+++ b/lib_pypy/binascii.py
@@ -659,7 +659,7 @@
         crc = crc_32_tab[(crc ^ long(ord(c))) & 0xffL] ^ (crc >> 8)
         #/* Note:  (crc >> 8) MUST zero fill on left
 
-        result = crc ^ 0xffffffffL
+    result = crc ^ 0xffffffffL
     
     if result > 2**31:
         result = ((result + 2**31) % 2**32) - 2**31
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to