diff options
| author | Andrew M. Kuchling <amk@amk.ca> | 2008-06-21 00:17:22 (GMT) |
|---|---|---|
| committer | Andrew M. Kuchling <amk@amk.ca> | 2008-06-21 00:17:22 (GMT) |
| commit | db53c1eb68ff19db167e80bcf02cd9984d25f022 (patch) | |
| tree | 74c22637515a1750c0d5ae091684984f4cab2941 | |
| parent | 6ba873c13494e73c483ab11acc20ec4787989865 (diff) | |
| download | cpython-db53c1eb68ff19db167e80bcf02cd9984d25f022.zip cpython-db53c1eb68ff19db167e80bcf02cd9984d25f022.tar.gz cpython-db53c1eb68ff19db167e80bcf02cd9984d25f022.tar.bz2 | |
Correct two versionchanged directives, to improve the 'changes' output
| -rw-r--r-- | Doc/library/py_compile.rst | 3 | ||||
| -rw-r--r-- | Doc/library/zlib.rst | 12 |
2 files changed, 7 insertions, 8 deletions
diff --git a/Doc/library/py_compile.rst b/Doc/library/py_compile.rst index 77ed8cf..40ca588 100644 --- a/Doc/library/py_compile.rst +++ b/Doc/library/py_compile.rst @@ -46,8 +46,7 @@ files named on the command line. The exit status is nonzero if one of the files 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:: diff --git a/Doc/library/zlib.rst b/Doc/library/zlib.rst index b522fe6..6ce4e66 100644 --- a/Doc/library/zlib.rst +++ b/Doc/library/zlib.rst @@ -44,9 +44,9 @@ The available exception and functions in this module are: 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 @@ The available exception and functions in this module are: 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]]) |
