[Python-checkins] r69163 - in python/branches/release30-maint/Doc/library: binascii.rst zlib.rst

gregory.p.smith python-checkins at python.org
Sun Feb 1 01:29:45 CET 2009


Author: gregory.p.smith
Date: Sun Feb  1 01:29:45 2009
New Revision: 69163

Log:
wording update for issue4903


Modified:
   python/branches/release30-maint/Doc/library/binascii.rst
   python/branches/release30-maint/Doc/library/zlib.rst

Modified: python/branches/release30-maint/Doc/library/binascii.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/binascii.rst	(original)
+++ python/branches/release30-maint/Doc/library/binascii.rst	Sun Feb  1 01:29:45 2009
@@ -120,11 +120,11 @@
    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.
 
 

Modified: python/branches/release30-maint/Doc/library/zlib.rst
==============================================================================
--- python/branches/release30-maint/Doc/library/zlib.rst	(original)
+++ python/branches/release30-maint/Doc/library/zlib.rst	Sun Feb  1 01:29:45 2009
@@ -48,11 +48,11 @@
    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 @@
    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.
 
 


More information about the Python-checkins mailing list