Pause the timer.
(self)
| 126 | self._total_paused = 0 |
| 127 | |
| 128 | def pause(self): |
| 129 | """ |
| 130 | Pause the timer. |
| 131 | """ |
| 132 | assert self._paused is False |
| 133 | self._paused = timer() |
| 134 | |
| 135 | def is_paused(self): |
| 136 | return self._paused is not False |
no outgoing calls
no test coverage detected