MCPcopy Index your code
hub / github.com/python/cpython / wait

Method wait

Lib/asyncio/subprocess.py:135–137  ·  view source on GitHub ↗

Wait until the process exit and return the process return code.

(self)

Source from the content-addressed store, hash-verified

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)

Callers 1

communicateMethod · 0.95

Calls 1

_waitMethod · 0.45

Tested by

no test coverage detected