(self)
| 964 | # The next few methods are a crude manual http client |
| 965 | @gen.coroutine |
| 966 | def connect(self): |
| 967 | self.stream = IOStream(socket.socket()) |
| 968 | yield self.stream.connect(("127.0.0.1", self.get_http_port())) |
| 969 | |
| 970 | @gen.coroutine |
| 971 | def read_headers(self): |
no test coverage detected