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

Function decodestring

Lib/quopri.py:153–160  ·  view source on GitHub ↗
(s, header=False)

Source from the content-addressed store, hash-verified

151 output.write(new)
152
153def decodestring(s, header=False):
154 if a2b_qp is not None:
155 return a2b_qp(s, header=header)
156 from io import BytesIO
157 infp = BytesIO(s)
158 outfp = BytesIO()
159 decode(infp, outfp, header=header)
160 return outfp.getvalue()
161
162
163

Callers

nothing calls this directly

Calls 3

getvalueMethod · 0.95
BytesIOClass · 0.90
decodeFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…