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

Method encode

Lib/encodings/quopri_codec.py:25–26  ·  view source on GitHub ↗
(self, input, errors='strict')

Source from the content-addressed store, hash-verified

23
24class Codec(codecs.Codec):
25 def encode(self, input, errors='strict'):
26 return quopri_encode(input, errors)
27 def decode(self, input, errors='strict'):
28 return quopri_decode(input, errors)
29

Callers 1

quopri_encodeFunction · 0.45

Calls 1

quopri_encodeFunction · 0.85

Tested by

no test coverage detected