Lines Matching defs:wait
264 # wait()ed for synchronously from _cleanup() when a new Popen object is
391 return p.wait(timeout=timeout)
392 except: # Including KeyboardInterrupt, wait handled that.
394 # We don't call p.wait() again as p.__exit__ does that for us.
563 process.wait()
567 # We don't call process.wait() as .__exit__ does that for us.
658 according to the rules for the function 'wait'. Example:
824 # updated to prevent clobbering returncode if wait() or poll() are
1107 # an interrupted .wait() or .communicate() call, do so here
1118 self.wait()
1132 # Child is still running, keep us alive until we can wait on it.
1201 self.wait()
1212 # See the detailed comment in .wait().
1218 self._sigint_wait_secs = 0 # nothing else should wait.
1228 sts = self.wait(timeout=self._remaining_time(endtime))
1259 def wait(self, timeout=None):
1275 self._sigint_wait_secs = 0 # nothing else should wait.
1581 """Internal implementation of wait() on Windows."""
2015 """Internal implementation of wait() on POSIX."""
2022 # cribbed from Lib/threading.py in Thread.wait() at r71065.
2134 self.wait(timeout=self._remaining_time(endtime))