(self)
| 107 | self.__first = True |
| 108 | |
| 109 | def __enter__(self): |
| 110 | self.start = Stopwatch._tfunc() |
| 111 | return self |
| 112 | |
| 113 | def __exit__(self, type_, value, traceback): |
| 114 | # https://docs.python.org/2.7/reference/datamodel.html?highlight=__enter__#object.__exit__ |
nothing calls this directly
no outgoing calls
no test coverage detected