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

Function quopri_decode

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

Source from the content-addressed store, hash-verified

15 return (g.getvalue(), len(input))
16
17def quopri_decode(input, errors='strict'):
18 assert errors == 'strict'
19 f = BytesIO(input)
20 g = BytesIO()
21 quopri.decode(f, g)
22 return (g.getvalue(), len(input))
23
24class Codec(codecs.Codec):
25 def encode(self, input, errors='strict'):

Callers 2

decodeMethod · 0.85
decodeMethod · 0.85

Calls 3

getvalueMethod · 0.95
BytesIOClass · 0.90
decodeMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…