HomeSort by relevance Sort by last modified time
    Searched refs:_urlsafe_decode_translation (Results 1 - 2 of 2) sorted by null

  /external/python/cpython2/Lib/
base64.py 100 _urlsafe_decode_translation = string.maketrans(b'-_', b'+/')
120 return b64decode(s.translate(_urlsafe_decode_translation))
99 _urlsafe_decode_translation = string.maketrans(b'-_', b'+\/') variable
  /external/python/cpython3/Lib/
base64.py 109 _urlsafe_decode_translation = bytes.maketrans(b'-_', b'+/') variable
132 s = s.translate(_urlsafe_decode_translation)

Completed in 67 milliseconds