Send the blank line ending the MIME headers.
(self)
| 564 | self.close_connection = False |
| 565 | |
| 566 | def end_headers(self): |
| 567 | """Send the blank line ending the MIME headers.""" |
| 568 | if self.request_version != 'HTTP/0.9': |
| 569 | self._headers_buffer.append(b"\r\n") |
| 570 | self.flush_headers() |
| 571 | |
| 572 | def flush_headers(self): |
| 573 | if hasattr(self, '_headers_buffer'): |