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

Method decode

Lib/imaplib.py:1755–1758  ·  view source on GitHub ↗
(self, inp)

Source from the content-addressed store, hash-verified

1753 return oup
1754
1755 def decode(self, inp):
1756 if not inp:
1757 return b''
1758 return binascii.a2b_base64(inp)
1759
1760Months = ' Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec'.split(' ')
1761Mon2num = {s.encode():n+1 for n, s in enumerate(Months[1:])}

Callers 3

processMethod · 0.95
authenticateMethod · 0.45
_check_byeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected