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

Method encode

Lib/encodings/quopri_codec.py:31–32  ·  view source on GitHub ↗
(self, input, final=False)

Source from the content-addressed store, hash-verified

29
30class IncrementalEncoder(codecs.IncrementalEncoder):
31 def encode(self, input, final=False):
32 return quopri_encode(input, self.errors)[0]
33
34class IncrementalDecoder(codecs.IncrementalDecoder):
35 def decode(self, input, final=False):

Callers

nothing calls this directly

Calls 1

quopri_encodeFunction · 0.85

Tested by

no test coverage detected