Convenience for _communicate when computing timeouts.
(self, endtime)
| 1305 | |
| 1306 | |
| 1307 | def _remaining_time(self, endtime): |
| 1308 | """Convenience for _communicate when computing timeouts.""" |
| 1309 | if endtime is None: |
| 1310 | return None |
| 1311 | else: |
| 1312 | return endtime - _time() |
| 1313 | |
| 1314 | |
| 1315 | def _check_timeout(self, endtime, orig_timeout, stdout_seq, stderr_seq, |
no outgoing calls
no test coverage detected