(self, exc_type, exc_value, exc_tb)
| 782 | self.capture.startDetachedFrame("PYTHON_FUNCTION_CALL", "body", self.func_id) |
| 783 | |
| 784 | def __exit__(self, exc_type, exc_value, exc_tb): |
| 785 | if exc_type: |
| 786 | if self.cap: |
| 787 | self.capture.logTracedException(exc_value) |
| 788 | self.capture.addExceptionFrame(self.func_id, self.frame_no, exc_tb.tb_lineno, exc_value) |
| 789 | |
| 790 | if self.cap: |
| 791 | self.capture.endFrameType("PYTHON_FUNCTION_CALL") |
| 792 | |
| 793 | |
| 794 | class SplootCapture: |
nothing calls this directly
no test coverage detected