diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 12:27:29 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2013-05-28 12:27:29 (GMT) |
commit | ea2b490f3dad99cfd677be9fd0c730622a723f38 (patch) | |
tree | ac37b1311dcd38f2aa9f56ffe92d50856fbee6b3 /Misc | |
parent | fef952a60749477cb612203cd09d208869b6e5e2 (diff) | |
download | cpython-ea2b490f3dad99cfd677be9fd0c730622a723f38.zip cpython-ea2b490f3dad99cfd677be9fd0c730622a723f38.tar.gz cpython-ea2b490f3dad99cfd677be9fd0c730622a723f38.tar.bz2 |
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.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -24,6 +24,10 @@ Core and Builtins Library ------- +- 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 #13772: Restored directory detection of targets in ``os.symlink`` on Windows, which was temporarily removed in Python 3.2.3 due to an incomplete implementation. The implementation now works even if the symlink is created |