(self)
| 105 | |
| 106 | class ContentLength304Handler(RequestHandler): |
| 107 | def get(self): |
| 108 | self.set_status(304) |
| 109 | self.set_header("Content-Length", 42) |
| 110 | |
| 111 | def _clear_representation_headers(self): |
| 112 | # Tornado strips content-length from 304 responses, but here we |
nothing calls this directly
no test coverage detected