MCPcopy Index your code
hub / github.com/python/cpython / _decode_base64

Function _decode_base64

Lib/plistlib.py:127–132  ·  view source on GitHub ↗
(s)

Source from the content-addressed store, hash-verified

125 return binascii.b2a_base64(s, wrapcol=maxlinelength, newline=False)
126
127def _decode_base64(s):
128 if isinstance(s, str):
129 return binascii.a2b_base64(s.encode("utf-8"))
130
131 else:
132 return binascii.a2b_base64(s)
133
134# Contents should conform to a subset of ISO 8601
135# (in particular, YYYY '-' MM '-' DD 'T' HH ':' MM ':' SS 'Z'. Smaller units

Callers 1

end_dataMethod · 0.85

Calls 1

encodeMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…