[Python-checkins] r64437 - in python/trunk/Doc/library: py_compile.rst zlib.rst

andrew.kuchling python-checkins at python.org
Sat Jun 21 02:17:22 CEST 2008


Author: andrew.kuchling
Date: Sat Jun 21 02:17:22 2008
New Revision: 64437

Log:
Correct two versionchanged directives, to improve the 'changes' output

Modified:
   python/trunk/Doc/library/py_compile.rst
   python/trunk/Doc/library/zlib.rst

Modified: python/trunk/Doc/library/py_compile.rst
==============================================================================
--- python/trunk/Doc/library/py_compile.rst	(original)
+++ python/trunk/Doc/library/py_compile.rst	Sat Jun 21 02:17:22 2008
@@ -46,8 +46,7 @@
 could not be compiled.
 
 .. versionchanged:: 2.6
-
-   Added the nonzero exit status.
+   Added the nonzero exit status when module is run as a script.
 
 
 .. seealso::

Modified: python/trunk/Doc/library/zlib.rst
==============================================================================
--- python/trunk/Doc/library/zlib.rst	(original)
+++ python/trunk/Doc/library/zlib.rst	Sat Jun 21 02:17:22 2008
@@ -44,9 +44,9 @@
 
    This function always returns an integer object.
 
-.. versionchanged:: 2.6
-   For consistent cross-platform behavior we always return a signed integer.
-   ie: Results in the (2**31)...(2**32-1) range will be negative.
+   .. versionchanged:: 2.6
+     For consistent cross-platform behavior we always return a signed integer.
+     ie: Results in the (2**31)...(2**32-1) range will be negative.
 
 
 .. function:: compress(string[, level])
@@ -82,9 +82,9 @@
 
    This function always returns an integer object.
 
-.. versionchanged:: 2.6
-   For consistent cross-platform behavior we always return a signed integer.
-   ie: Results in the (2**31)...(2**32-1) range will be negative.
+   .. versionchanged:: 2.6
+     For consistent cross-platform behavior we always return a signed integer.
+     ie: Results in the (2**31)...(2**32-1) range will be negative.
 
 
 .. function:: decompress(string[, wbits[, bufsize]])


More information about the Python-checkins mailing list