summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorR David Murray <rdmurray@bitdance.com>2014-01-08 23:09:29 (GMT)
committerR David Murray <rdmurray@bitdance.com>2014-01-08 23:09:29 (GMT)
commit78ee3289e991882d803be4cb0dd6b4005f82cbb1 (patch)
tree9f4da9b85bf34e64d84aff763eccafa032505637 /Misc
parentcd5ca6a564bedabd770389e4041755dc25e5de4a (diff)
downloadcpython-78ee3289e991882d803be4cb0dd6b4005f82cbb1.zip
cpython-78ee3289e991882d803be4cb0dd6b4005f82cbb1.tar.gz
cpython-78ee3289e991882d803be4cb0dd6b4005f82cbb1.tar.bz2
Fix verb tense in base64 docs, and the phrasing of a news entry.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS6
1 files changed, 3 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1306891..4ad230a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -710,9 +710,9 @@ Library
- 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