Write to fd with trailing newline, return number of bytes written
(self, s)
| 106 | return os.write(self.child_fd, b) |
| 107 | |
| 108 | def sendline(self, s): |
| 109 | "Write to fd with trailing newline, return number of bytes written" |
| 110 | s = self._coerce_send_string(s) |
| 111 | return self.send(s + self.linesep) |
| 112 | |
| 113 | def write(self, s): |
| 114 | "Write to fd, return None" |
nothing calls this directly
no test coverage detected