summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2012-02-20 18:30:23 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2012-02-20 18:30:23 (GMT)
commitea6b4d5f70469071912e81cb29319996cfd990e0 (patch)
tree34f26c94b9e7f07b59483ab2891ba4809acd9ab4 /Misc
parent0588eac21852d25c8ab1cac09aec9668bc38df9f (diff)
downloadcpython-ea6b4d5f70469071912e81cb29319996cfd990e0.zip
cpython-ea6b4d5f70469071912e81cb29319996cfd990e0.tar.gz
cpython-ea6b4d5f70469071912e81cb29319996cfd990e0.tar.bz2
Issue #13641: Decoding functions in the base64 module now accept ASCII-only unicode strings.
Patch by Catalin Iacob.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fbeb177..d9ad8fc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -469,6 +469,9 @@ Core and Builtins
Library
-------
+- Issue #13641: Decoding functions in the base64 module now accept ASCII-only
+ unicode strings. Patch by Catalin Iacob.
+
- Issue #14043: Speed up importlib's _FileFinder by at least 8x, and add a
new importlib.invalidate_caches() function.