+ 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)
| 327 | return (name, value) |
| 328 | |
| 329 | def header_fetch_parse(self, name, value): |
| 330 | """+ |
| 331 | If the value contains binary data, it is converted into a Header object |
| 332 | using the unknown-8bit charset. Otherwise it is returned unmodified. |
| 333 | """ |
| 334 | return self._sanitize_header(name, value) |
| 335 | |
| 336 | def fold(self, name, value): |
| 337 | """+ |
nothing calls this directly
no test coverage detected