[Python-checkins] cpython (3.3): Fix verb tense in base64 docs, and the phrasing of a news entry.

r.david.murray python-checkins at python.org
Thu Jan 9 00:17:03 CET 2014


http://hg.python.org/cpython/rev/04dabdbd512c
changeset:   88360:04dabdbd512c
branch:      3.3
parent:      88356:1993a8ec3f19
user:        R David Murray <rdmurray at bitdance.com>
date:        Wed Jan 08 18:09:29 2014 -0500
summary:
  Fix verb tense in base64 docs, and the phrasing of a news entry.

files:
  Doc/library/base64.rst |  2 +-
  Misc/NEWS              |  6 +++---
  2 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Doc/library/base64.rst b/Doc/library/base64.rst
--- a/Doc/library/base64.rst
+++ b/Doc/library/base64.rst
@@ -103,7 +103,7 @@
    digit 0 is always mapped to the letter O).  For security purposes the default is
    ``None``, so that 0 and 1 are not allowed in the input.
 
-   The decoded byte string is returned.  A :exc:`binascii.Error` is raised if *s* were
+   The decoded byte string is returned.  A :exc:`binascii.Error` is raised if *s* is
    incorrectly padded or if there are non-alphabet characters present in the
    string.
 
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -710,9 +710,9 @@
 - Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw
   stream's read() returns more bytes than requested.
 
-- Issue #18011: base64.b32decode() now raises a binascii.Error if there are
-  non-alphabet characters present in the input string to conform a docstring.
-  Updated the module documentation.
+- Issue #18011: As was originally intended, base64.b32decode() now raises a
+  binascii.Error if there are non-b32-alphabet characters present in the input
+  string, instead of a TypeError.
 
 - Issue #13772: Restored directory detection of targets in ``os.symlink`` on
   Windows, which was temporarily removed in Python 3.2.3 due to an incomplete

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list