(self)
| 753 | self._separator = b"--" + boundary |
| 754 | |
| 755 | def __iter__(self): |
| 756 | boundarystream = InterBoundaryIter(self._stream, self._separator) |
| 757 | for sub_stream in boundarystream: |
| 758 | # Iterate over each part |
| 759 | yield parse_boundary_stream(sub_stream, MAX_TOTAL_HEADER_SIZE) |
nothing calls this directly
no test coverage detected