| 32 | |
| 33 | @dataclasses.dataclass(frozen=True, slots=True) |
| 34 | class FutureCallGraph: |
| 35 | future: futures.Future |
| 36 | call_stack: tuple["FrameCallGraphEntry", ...] |
| 37 | awaited_by: tuple["FutureCallGraph", ...] |
| 38 | |
| 39 | |
| 40 | def _build_graph_for_future( |
no outgoing calls
no test coverage detected
searching dependent graphs…