]> granicus.if.org Git - python/commitdiff
Portable way of producing unsigned 32-bit hex output to print the
authorGuido van Rossum <guido@python.org>
Mon, 12 Aug 2002 15:26:05 +0000 (15:26 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 12 Aug 2002 15:26:05 +0000 (15:26 +0000)
CRCs.

Lib/test/test_zlib.py

index ab1c799c0408e39267d808f523619d07319012e6..b7d99c32b3066602750248a2863131d4a5697d3f 100644 (file)
@@ -12,8 +12,10 @@ buf = file.read() * 8
 file.close()
 
 # test the checksums (hex so the test doesn't break on 64-bit machines)
-print hex(zlib.crc32('penguin')), hex(zlib.crc32('penguin', 1))
-print hex(zlib.adler32('penguin')), hex(zlib.adler32('penguin', 1))
+def fix(x):
+    return "0x%x" % (x & 0xffffffffL)
+print fix(zlib.crc32('penguin')), fix(zlib.crc32('penguin', 1))
+print fix(zlib.adler32('penguin')), fix(zlib.adler32('penguin', 1))
 
 # make sure we generate some expected errors
 try: