(self, command)
| 57 | self.file = connection.makefile("rb") |
| 58 | |
| 59 | def send(self, command): |
| 60 | line = command + "\n" |
| 61 | data = line.encode() |
| 62 | self.connection.send(data) |
| 63 | |
| 64 | def receive(self): |
| 65 | line = self.file.readline() |
no outgoing calls
no test coverage detected