(self)
| 793 | |
| 794 | class SplootCapture: |
| 795 | def __init__(self): |
| 796 | self.root = CaptureContext("PYTHON_FILE", "body") |
| 797 | self.stack = [self.root] |
| 798 | self.detachedFrames = {} |
| 799 | self.detachedFramesCount = {} |
| 800 | self.detachedFramesException = {} |
| 801 | self.sideEffects = [] |
| 802 | self.lastException = None |
| 803 | |
| 804 | def func(self, func_id): |
| 805 | self.detachedFrames.setdefault(func_id, []) |
nothing calls this directly
no test coverage detected