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

Method decode

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

Source from the content-addressed store, hash-verified

33
34class IncrementalDecoder(codecs.IncrementalDecoder):
35 def decode(self, input, final=False):
36 return quopri_decode(input, self.errors)[0]
37
38class StreamWriter(Codec, codecs.StreamWriter):
39 charbuffertype = bytes

Callers

nothing calls this directly

Calls 1

quopri_decodeFunction · 0.85

Tested by

no test coverage detected