Check if child process has terminated. Set and return returncode attribute.
(self)
| 1299 | |
| 1300 | |
| 1301 | def poll(self): |
| 1302 | """Check if child process has terminated. Set and return returncode |
| 1303 | attribute.""" |
| 1304 | return self._internal_poll() |
| 1305 | |
| 1306 | |
| 1307 | def _remaining_time(self, endtime): |
no test coverage detected