diff options
author | Alex Waygood <Alex.Waygood@Gmail.com> | 2022-05-10 05:48:18 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-10 05:48:18 (GMT) |
commit | 7c638e64050778f2e0052ec9f84cd202b8aedfce (patch) | |
tree | 40100099b48ff982a9d791e6a90a78628956c72f /Doc/library/binascii.rst | |
parent | 6823ba4a9ee1a88102e835c5a278904f35588675 (diff) | |
download | cpython-7c638e64050778f2e0052ec9f84cd202b8aedfce.zip cpython-7c638e64050778f2e0052ec9f84cd202b8aedfce.tar.gz cpython-7c638e64050778f2e0052ec9f84cd202b8aedfce.tar.bz2 |
gh-92417: `zlib` docs, `binascii` docs: remove Python 2 compatibility notes (GH-92543)
Diffstat (limited to 'Doc/library/binascii.rst')
-rw-r--r-- | Doc/library/binascii.rst | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Doc/library/binascii.rst b/Doc/library/binascii.rst index 19efc2d..4417a5a 100644 --- a/Doc/library/binascii.rst +++ b/Doc/library/binascii.rst @@ -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]]) |