]> granicus.if.org Git - python/commitdiff
documentation wording fix for issue4903
authorGregory P. Smith <greg@mad-scientist.com>
Sun, 1 Feb 2009 00:30:50 +0000 (00:30 +0000)
committerGregory P. Smith <greg@mad-scientist.com>
Sun, 1 Feb 2009 00:30:50 +0000 (00:30 +0000)
Doc/library/binascii.rst
Doc/library/zlib.rst

index 39130a85a6efdd4d984b559a66a30bc7bdfc924c..83dcb67ec61a875a87b57492404cb85693966b53 100644 (file)
@@ -120,11 +120,11 @@ The :mod:`binascii` module defines the following functions:
    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.
 
 
index b5875ee037c1362189cb449fb619f6ae0c388538..2ab145081ebdf898cd01fef487635037332b4599 100644 (file)
@@ -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.