(self)
| 348 | raise AttributeError(f"attribute '{name}' is read only") |
| 349 | |
| 350 | def __repr__(self): |
| 351 | offset = self.pc - self.func_start |
| 352 | return f"<DebugFrame: {self.module}`{self.func_name} + {offset:#x}, sp: {self.sp:#x}, fp: {self.fp:#x}>" |
| 353 | |
| 354 | |
| 355 | class TargetStoppedEventData: |