(self)
| 357 | self.name = name |
| 358 | |
| 359 | def __enter__(self): |
| 360 | self.tstart = time.time() |
| 361 | |
| 362 | def __exit__(self, type, value, traceback): |
| 363 | out_str = 'Elapsed: %s' % (time.time() - self.tstart) |
nothing calls this directly
no outgoing calls
no test coverage detected