Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions Doc/library/binascii.rst
Original file line numberDiff line numberDiff line change
Expand Up@@ -121,8 +121,6 @@ The :mod:`binascii` module defines the following functions:

.. 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]])
Expand Down
4 changes: 0 additions & 4 deletions Doc/library/zlib.rst
Original file line numberDiff line numberDiff line change
Expand Up@@ -43,8 +43,6 @@ The available exception and functions in this module are:

.. 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)

Expand DownExpand Up@@ -137,8 +135,6 @@ The available exception and functions in this module are:

.. 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)

Expand Down