Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
807
def
B64(n):
808
return
bytes(
809
[
810
b
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
[
811
(n) & 0x3F
812
]
813
]
814
)
815
816
817
def
B64CHAR(c):
Callers
2
ENCODE
Function · 0.85
PyUnicode_EncodeUTF7
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected