communicate(stdin = None) -> str Calls :meth:`subprocess.Popen.communicate` method on the process.
(self, stdin = None)
| 698 | return returncode |
| 699 | |
| 700 | def communicate(self, stdin = None): |
| 701 | """communicate(stdin = None) -> str |
| 702 | |
| 703 | Calls :meth:`subprocess.Popen.communicate` method on the process. |
| 704 | """ |
| 705 | |
| 706 | return self.proc.communicate(stdin) |
| 707 | |
| 708 | # Implementation of the methods required for tube |
| 709 | def recv_raw(self, numb): |
no outgoing calls
no test coverage detected