We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e8786f commit cc0d410Copy full SHA for cc0d410
Lib/asyncio/tools.py
@@ -28,7 +28,7 @@ def __init__(
28
# ─── indexing helpers ───────────────────────────────────────────
29
def _format_stack_entry(elem: tuple[str, str, int] | str) -> str:
30
if isinstance(elem, tuple):
31
- fqname, path, line_no = elem
+ path, line_no, fqname = elem
32
return f"{fqname} {path}:{line_no}"
33
34
return elem
0 commit comments