Send the blank line ending the MIME headers.
(self)
| 592 | self.close_connection = False |
| 593 | |
| 594 | def end_headers(self): |
| 595 | """Send the blank line ending the MIME headers.""" |
| 596 | if self.request_version != 'HTTP/0.9': |
| 597 | self._headers_buffer.append(b"\r\n") |
| 598 | self.flush_headers() |
| 599 | |
| 600 | def flush_headers(self): |
| 601 | if hasattr(self, '_headers_buffer'): |