(self)
| 38 | self.connection = connection |
| 39 | |
| 40 | def finish(self): |
| 41 | self.connection.write_headers( |
| 42 | ResponseStartLine("HTTP/1.1", 200, "OK"), |
| 43 | HTTPHeaders({"Content-Length": "2"}), |
| 44 | b"OK", |
| 45 | ) |
| 46 | self.connection.finish() |
| 47 | |
| 48 | return MessageDelegate(request.connection) |
| 49 |
no test coverage detected