MCPcopy Index your code
hub / github.com/RustPython/RustPython / b32hexdecode

Function b32hexdecode

Lib/base64.py:257–259  ·  view source on GitHub ↗
(s, casefold=False)

Source from the content-addressed store, hash-verified

255b32hexencode.__doc__ = _B32_ENCODE_DOCSTRING.format(encoding='base32hex')
256
257def b32hexdecode(s, casefold=False):
258 # base32hex does not have the 01 mapping
259 return _b32decode(_b32hexalphabet, s, casefold)
260b32hexdecode.__doc__ = _B32_DECODE_DOCSTRING.format(encoding='base32hex',
261 extra_args='')
262

Callers

nothing calls this directly

Calls 1

_b32decodeFunction · 0.85

Tested by

no test coverage detected