Searched refs:a85decode (Results 1 – 6 of 6) sorted by relevance
/third_party/python/Lib/test/ |
D | test_base64.py | 573 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/ |
D | base64.py | 368 def a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \t\n\r\v'): function
|
/third_party/python/Doc/library/ |
D | base64.rst | 202 .. function:: a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \\t\\n\\r\\v')
|
/third_party/python/Misc/NEWS.d/ |
D | 3.5.2rc1.rst | 1105 Leading ``<~`` is optional now in base64.a85decode() with adobe=True. Patch
|
D | 3.6.0a1.rst | 1750 Leading ``<~`` is optional now in base64.a85decode() with adobe=True. Patch
|
/third_party/python/Doc/whatsnew/ |
D | 3.4.rst | 652 New functions :func:`~base64.a85encode`, :func:`~base64.a85decode`,
|