diff options
author | R. David Murray <rdmurray@bitdance.com> | 2010-11-11 20:09:20 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2010-11-11 20:09:20 (GMT) |
commit | 6495136e4018b626c40500bbd564fdfda9825587 (patch) | |
tree | 3d49ba6a59663e6cff25a7f5f16942b7c5c8a3b0 /Misc | |
parent | 49afa380fd86dfa07e68e7838adcdad38d3d8ba6 (diff) | |
download | cpython-6495136e4018b626c40500bbd564fdfda9825587.zip cpython-6495136e4018b626c40500bbd564fdfda9825587.tar.gz cpython-6495136e4018b626c40500bbd564fdfda9825587.tar.bz2 |
#1466065: add validate option to base64.b64decode
Patch by Neil Tallim. This provides a mechanism for module
users to achieve RFC 3548 compliance in the cases where ignoring
non-base64-alphabet input characters is *not* mandated by the RFC that
references RFC 3548.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -63,6 +63,9 @@ Core and Builtins Library ------- +- Issue #1466065: Add 'validate' option to base64.b64decode to raise + an error if there are non-base64 alphabet characters in the input. + - Issue #10386: Add __all__ to token module; this simplifies importing in tokenize module and prevents leaking of private names through import *. |