Record when a process starts for timing calculations.
(self, process: RunningProcess)
| 497 | return None |
| 498 | |
| 499 | def _track_process_start(self, process: RunningProcess) -> None: |
| 500 | """Record when a process starts for timing calculations.""" |
| 501 | self._process_start_times[process] = datetime.now() |
| 502 | |
| 503 | def _update_process_output(self, process: RunningProcess) -> None: |
| 504 | """Update cached last output line for a process.""" |
no test coverage detected