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

Method decode

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

Source from the content-addressed store, hash-verified

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
30class IncrementalEncoder(codecs.IncrementalEncoder):
31 def encode(self, input, final=False):

Callers 1

quopri_decodeFunction · 0.45

Calls 1

quopri_decodeFunction · 0.85

Tested by

no test coverage detected