+ If the value contains binary data, it is converted into a Header object using the unknown-8bit charset. Otherwise it is returned unmodified.
(self, name, value)
| 317 | return (name, value) |
| 318 | |
| 319 | def header_fetch_parse(self, name, value): |
| 320 | """+ |
| 321 | If the value contains binary data, it is converted into a Header object |
| 322 | using the unknown-8bit charset. Otherwise it is returned unmodified. |
| 323 | """ |
| 324 | return self._sanitize_header(name, value) |
| 325 | |
| 326 | def fold(self, name, value): |
| 327 | """+ |
nothing calls this directly
no test coverage detected