(data: bytes, start: int, end: int)
| 841 | current_headers = {} |
| 842 | |
| 843 | def on_part_data(data: bytes, start: int, end: int) -> None: |
| 844 | parts.append(MultipartPart(current_headers, data[start:end])) |
| 845 | |
| 846 | def on_header_field(data: bytes, start: int, end: int) -> None: |
| 847 | nonlocal current_header_field |
nothing calls this directly
no test coverage detected