.. versionchanged:: 3.0
The result is always unsigned.
- To generate the same numeric value when using Python 2 or earlier,
- use ``crc32(data) & 0xffffffff``.
.. function:: b2a_hex(data[, sep[, bytes_per_sep=1]])
hexlify(data[, sep[, bytes_per_sep=1]])
.. versionchanged:: 3.0
The result is always unsigned.
- To generate the same numeric value when using Python 2 or earlier,
- use ``adler32(data) & 0xffffffff``.
.. function:: compress(data, /, level=-1, wbits=MAX_WBITS)
.. versionchanged:: 3.0
The result is always unsigned.
- To generate the same numeric value when using Python 2 or earlier,
- use ``crc32(data) & 0xffffffff``.
.. function:: decompress(data, /, wbits=MAX_WBITS, bufsize=DEF_BUF_SIZE)