Turn a match in the form =AB to the ASCII character with value 0xab
(match)
| 283 | |
| 284 | |
| 285 | def _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 |