Wait until the process exit and return the process return code.
(self)
| 133 | return self._transport.get_returncode() |
| 134 | |
| 135 | async def wait(self): |
| 136 | """Wait until the process exit and return the process return code.""" |
| 137 | return await self._transport._wait() |
| 138 | |
| 139 | def send_signal(self, signal): |
| 140 | self._transport.send_signal(signal) |