Store name and value in the model without modification. This is an "internal" API, intended only for use by a parser.
(self, name, value)
| 521 | # |
| 522 | |
| 523 | def set_raw(self, name, value): |
| 524 | """Store name and value in the model without modification. |
| 525 | |
| 526 | This is an "internal" API, intended only for use by a parser. |
| 527 | """ |
| 528 | self._headers.append((name, value)) |
| 529 | |
| 530 | def raw_items(self): |
| 531 | """Return the (name, value) header pairs without modification. |