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

Function B64

Lib/_pycodecs.py:807–814  ·  view source on GitHub ↗
(n)

Source from the content-addressed store, hash-verified

805
806
807def B64(n):
808 return bytes(
809 [
810 b"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[
811 (n) & 0x3F
812 ]
813 ]
814 )
815
816
817def B64CHAR(c):

Callers 2

ENCODEFunction · 0.85
PyUnicode_EncodeUTF7Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected