(self)
| 229 | self.print_time = print_time |
| 230 | |
| 231 | def __enter__(self): |
| 232 | self.t = time.time() |
| 233 | |
| 234 | def __exit__(self, exc_type, exc_val, exc_tb): |
| 235 | Timer.timer_map[self.name] += time.time() - self.t |
nothing calls this directly
no outgoing calls
no test coverage detected