(self, timeout=1.0)
| 327 | self.telnet.write(buffer) |
| 328 | |
| 329 | def discard_inputs(self, timeout=1.0): |
| 330 | while True: |
| 331 | ch = self.getc_raw(1, timeout=timeout) |
| 332 | if ch == b"": |
| 333 | break |
| 334 | |
| 335 | def getc(self, size, timeout=1): |
| 336 | c = self.getc_raw(size, timeout) |
no test coverage detected