Home
last modified time | relevance | path

Searched refs:map01 (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython2/Lib/
Dbase64.py184 def b32decode(s, casefold=False, map01=None): argument
209 if map01:
210 s = s.translate(string.maketrans(b'01', b'O' + map01))
/external/python/cpython2/Lib/test/
Dtest_base64.py206 eq(base64.b32decode('M1023456', map01='L'), 'b\xdd\xad\xf3\xbe')
207 eq(base64.b32decode('M1023456', map01='I'), 'b\x1d\xad\xf3\xbe')
/external/python/cpython2/Doc/library/
Dbase64.rst85 .. function:: b32decode(s[, casefold[, map01]])
95 or letter L (el). The optional argument *map01* when not ``None``, specifies
96 which letter the digit 1 should be mapped to (when *map01* is not ``None``, the