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

Function _unquote_match

Lib/email/quoprimime.py:285–288  ·  view source on GitHub ↗

Turn a match in the form =AB to the ASCII character with value 0xab

(match)

Source from the content-addressed store, hash-verified

283
284
285def _unquote_match(match):
286 """Turn a match in the form =AB to the ASCII character with value 0xab"""
287 s = match.group(0)
288 return unquote(s)
289
290
291# Header decoding is done a bit differently

Callers

nothing calls this directly

Calls 2

unquoteFunction · 0.70
groupMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…