(self)
| 277 | self.connection = connection |
| 278 | |
| 279 | def finish(self) -> None: |
| 280 | self.connection.write_headers( |
| 281 | httputil.ResponseStartLine("HTTP/1.1", 404, "Not Found"), |
| 282 | httputil.HTTPHeaders(), |
| 283 | ) |
| 284 | self.connection.finish() |
| 285 | |
| 286 | |
| 287 | # _RuleList can either contain pre-constructed Rules or a sequence of |
nothing calls this directly
no test coverage detected