summaryrefslogtreecommitdiffstats
path: root/Doc/library/zlib.rst
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-02-01 00:30:50 (GMT)
committerGregory P. Smith <greg@mad-scientist.com>2009-02-01 00:30:50 (GMT)
commitfa6cf39e7095d4fba72d0364054512d17b9c3e60 (patch)
tree7e13c2dce03caba09aa632ce0a09281a1872a96d /Doc/library/zlib.rst
parent548a4cb1f9330def521ee4aebc67a7ca8a416813 (diff)
downloadcpython-fa6cf39e7095d4fba72d0364054512d17b9c3e60.zip
cpython-fa6cf39e7095d4fba72d0364054512d17b9c3e60.tar.gz
cpython-fa6cf39e7095d4fba72d0364054512d17b9c3e60.tar.bz2
documentation wording fix for issue4903
Diffstat (limited to 'Doc/library/zlib.rst')
-rw-r--r--Doc/library/zlib.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/zlib.rst b/Doc/library/zlib.rst
index b5875ee..2ab1450 100644
--- a/Doc/library/zlib.rst
+++ b/Doc/library/zlib.rst
@@ -48,11 +48,11 @@ The available exception and functions in this module are:
To generate the same numeric value across all Python versions and
platforms use adler32(data) & 0xffffffff. If you are only using
the checksum in packed binary format this is not necessary as the
- return value will have the correct 32bit binary representation
+ return value is the correct 32bit binary representation
regardless of sign.
.. versionchanged:: 3.0
- The return value will always be unsigned and in the range [0, 2**32-1]
+ The return value is unsigned and in the range [0, 2**32-1]
regardless of platform.
@@ -93,11 +93,11 @@ The available exception and functions in this module are:
To generate the same numeric value across all Python versions and
platforms use crc32(data) & 0xffffffff. If you are only using
the checksum in packed binary format this is not necessary as the
- return value will have the correct 32bit binary representation
+ return value is the correct 32bit binary representation
regardless of sign.
.. versionchanged:: 3.0
- The return value will always be unsigned and in the range [0, 2**32-1]
+ The return value is unsigned and in the range [0, 2**32-1]
regardless of platform.