Print the async call graph for the current task or the provided Future.
(
future: futures.Future | None = None,
/,
*,
file: io.Writer[str] | None = None,
depth: int = 1,
limit: int | None = None,
)
| 265 | return '\n'.join(buf) |
| 266 | |
| 267 | def print_call_graph( |
| 268 | future: futures.Future | None = None, |
| 269 | /, |
| 270 | *, |
| 271 | file: io.Writer[str] | None = None, |
| 272 | depth: int = 1, |
| 273 | limit: int | None = None, |
| 274 | ) -> None: |
| 275 | """Print the async call graph for the current task or the provided Future.""" |
| 276 | print(format_call_graph(future, depth=depth, limit=limit), file=file) |
nothing calls this directly
no test coverage detected
searching dependent graphs…