Home
last modified time | relevance | path

Searched refs:a85decode (Results 1 – 6 of 6) sorted by relevance

/third_party/python/Lib/test/
Dtest_base64.py573 eq(base64.a85decode(data), res, data)
574 eq(base64.a85decode(data, adobe=False), res, data)
575 eq(base64.a85decode(data.decode("ascii"), adobe=False), res, data)
576 eq(base64.a85decode(b'<~' + data + b'~>', adobe=True), res, data)
577 eq(base64.a85decode(data + b'~>', adobe=True), res, data)
578 eq(base64.a85decode('<~%s~>' % data.decode("ascii"), adobe=True),
581 eq(base64.a85decode(b'yy', foldspaces=True, adobe=False), b' '*8)
582 eq(base64.a85decode(b'y+<Vd', foldspaces=True, adobe=False), b' '*7)
583 eq(base64.a85decode(b'y+<U', foldspaces=True, adobe=False), b' '*6)
584 eq(base64.a85decode(b'y+9', foldspaces=True, adobe=False), b' '*5)
[all …]
/third_party/python/Lib/
Dbase64.py368 def a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \t\n\r\v'): function
/third_party/python/Doc/library/
Dbase64.rst202 .. function:: a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \\t\\n\\r\\v')
/third_party/python/Misc/NEWS.d/
D3.5.2rc1.rst1105 Leading ``<~`` is optional now in base64.a85decode() with adobe=True. Patch
D3.6.0a1.rst1750 Leading ``<~`` is optional now in base64.a85decode() with adobe=True. Patch
/third_party/python/Doc/whatsnew/
D3.4.rst652 New functions :func:`~base64.a85encode`, :func:`~base64.a85decode`,