(self, arr)
| 323 | return np.frombuffer(buf, dtype=np.uint8) |
| 324 | |
| 325 | def write(self, arr): |
| 326 | bytes = arr.tobytes() |
| 327 | self._process.stdin.write(bytes) |
| 328 | |
| 329 | def write_eof(self): |
| 330 | if self._stdin != None: |
nothing calls this directly
no outgoing calls
no test coverage detected