(self)
| 833 | # The next few methods are a crude manual http client |
| 834 | @gen.coroutine |
| 835 | def connect(self): |
| 836 | self.stream = IOStream(socket.socket()) |
| 837 | yield self.stream.connect(("127.0.0.1", self.get_http_port())) |
| 838 | |
| 839 | @gen.coroutine |
| 840 | def read_headers(self): |
no test coverage detected