(self)
| 101 | return Stopwatch._tfunc() - start |
| 102 | |
| 103 | def reset(self): |
| 104 | # clear stat |
| 105 | self.min = 0.0 |
| 106 | self.max = 0.0 |
| 107 | self.__first = True |
| 108 | |
| 109 | def __enter__(self): |
| 110 | self.start = Stopwatch._tfunc() |
nothing calls this directly
no outgoing calls
no test coverage detected