(self)
| 84 | |
| 85 | @coroutine |
| 86 | def post(self): |
| 87 | response = yield self.client.request(self.get_body_argument("message")) |
| 88 | self.set_header("Content-Type", "text/html") |
| 89 | self._write_open() |
| 90 | self._write_form() |
| 91 | self.write("Response: " + response) |
| 92 | self._write_close() |
| 93 | |
| 94 | def _write_open(self): |
| 95 | self.write('<html><body>') |
nothing calls this directly
no test coverage detected