(self)
| 778 | self.cap = True |
| 779 | |
| 780 | def __enter__(self): |
| 781 | if self.cap: |
| 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: |
nothing calls this directly
no test coverage detected