Check if child process has terminated. Set and return returncode attribute.
(self)
| 1231 | |
| 1232 | |
| 1233 | def poll(self): |
| 1234 | """Check if child process has terminated. Set and return returncode |
| 1235 | attribute.""" |
| 1236 | return self._internal_poll() |
| 1237 | |
| 1238 | |
| 1239 | def _remaining_time(self, endtime): |
no test coverage detected