From: Serhiy Storchaka Date: Wed, 24 Feb 2016 10:08:11 +0000 (+0200) Subject: Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True. X-Git-Tag: v3.6.0a1~578 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6c783ac15de8b7e54d889e926af7223803c22515;p=python Issue #25913: Leading <~ is optional now in base64.a85decode() with adobe=True. Patch by Swati Jaiswal. --- 6c783ac15de8b7e54d889e926af7223803c22515 diff --cc Misc/NEWS index ba48048753,fd4ca59277..546c295ef3 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -186,9 -75,13 +186,12 @@@ Core and Builtin Library ------- - Issue #26186: Remove an invalid type check in importlib.util.LazyLoader. + - Issue #25913: Leading ``<~`` is optional now in base64.a85decode() with + adobe=True. Patch by Swati Jaiswal. + + - Issue #26186: Remove an invalid type check in importlib.util.LazyLoader. -- Issue #26367: importlib.__import__() raises SystemError like +- Issue #26367: importlib.__import__() raises ImportError like builtins.__import__() when ``level`` is specified but without an accompanying package specified.