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

Function encode

Lib/encodings/_win_cp_codecs.py:6–7  ·  view source on GitHub ↗
(input, errors='strict')

Source from the content-addressed store, hash-verified

4 from codecs import code_page_encode, code_page_decode
5
6 def encode(input, errors='strict'):
7 return code_page_encode(cp, input, errors)
8
9 def decode(input, errors='strict'):
10 return code_page_decode(cp, input, errors, True)

Callers

nothing calls this directly

Calls 1

code_page_encodeFunction · 0.90

Tested by

no test coverage detected