Start the timer.
(self)
| 54 | self._is_running = False |
| 55 | |
| 56 | def start(self): |
| 57 | """Start the timer.""" |
| 58 | if not self._is_running: |
| 59 | self._t_start = time() |
| 60 | self._is_running = True |
| 61 | self._t_last = time() |
| 62 | |
| 63 | def since_start(self): |
| 64 | """Total time since the timer is started. |
no outgoing calls