Waits for the process to finish executing. @raise WindowsError: On error an exception is raised.
(self, dwTimeout=None)
| 352 | # ------------------------------------------------------------------------------ |
| 353 | |
| 354 | def wait(self, dwTimeout=None): |
| 355 | """ |
| 356 | Waits for the process to finish executing. |
| 357 | |
| 358 | @raise WindowsError: On error an exception is raised. |
| 359 | """ |
| 360 | self.get_handle(win32.SYNCHRONIZE).wait(dwTimeout) |
| 361 | |
| 362 | def kill(self, dwExitCode=0): |
| 363 | """ |
no test coverage detected