Kaydet (Commit) 5b5ee69e authored tarafından Nadeem Vawda's avatar Nadeem Vawda

Remove dead code in gzip.

These functions appear to be holdovers from the 2.x code, intended to handle
problems with CRC signedness.
üst 5e610def
......@@ -16,18 +16,6 @@ FTEXT, FHCRC, FEXTRA, FNAME, FCOMMENT = 1, 2, 4, 8, 16
READ, WRITE = 1, 2
def U32(i):
"""Return i as an unsigned integer, assuming it fits in 32 bits.
If it's >= 2GB when viewed as a 32-bit unsigned int, return a long.
"""
if i < 0:
i += 1 << 32
return i
def LOWU32(i):
"""Return the low-order 32 bits, as a non-negative int"""
return i & 0xFFFFFFFF
def write32u(output, value):
# The L format writes the bit pattern correctly whether signed
# or unsigned.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment