diff options
Diffstat (limited to 'Doc/library/zlib.rst')
-rw-r--r-- | Doc/library/zlib.rst | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Doc/library/zlib.rst b/Doc/library/zlib.rst index f0c67d5..30eb998 100644 --- a/Doc/library/zlib.rst +++ b/Doc/library/zlib.rst @@ -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) @@ -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) |