(self, *args, **kwargs)
| 234 | pass |
| 235 | |
| 236 | def get(self, *args, **kwargs): |
| 237 | if self.format in MIME_MAP: |
| 238 | self.set_header("Content-Type", MIME_MAP[self.format]) |
| 239 | self.write(self.page) |
| 240 | |
| 241 | |
| 242 | class ProxyServerHandler: |
no test coverage detected