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

Function unquote

Lib/email/quoprimime.py:118–120  ·  view source on GitHub ↗

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

(s)

Source from the content-addressed store, hash-verified

116
117
118def unquote(s):
119 """Turn a string in the form =AB to the ASCII character with value 0xab"""
120 return chr(int(s[1:3], 16))
121
122
123def quote(c):

Callers 2

decodeFunction · 0.70
_unquote_matchFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…