(self, errType, errValue, traceback)
| 33 | pass |
| 34 | |
| 35 | def __exit__(self, errType, errValue, traceback): |
| 36 | if errType is None: # no exception |
| 37 | return |
| 38 | elif issubclass(errType, KeyboardInterrupt): # except KeyboardInterrupt: |
| 39 | printTimersDebugInfo() |
| 40 | return True # exception suppressed |
| 41 | else: # other exceptions |
| 42 | return False |
nothing calls this directly
no test coverage detected