Skip to content

Commit cc0d410

Browse files
committed
pythongh-91048: Reorder result tuple in asyncio/tools.py
1 parent 8e8786f commit cc0d410

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/asyncio/tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __init__(
2828
# ─── indexing helpers ───────────────────────────────────────────
2929
def _format_stack_entry(elem: tuple[str, str, int] | str) -> str:
3030
if isinstance(elem, tuple):
31-
fqname, path, line_no = elem
31+
path, line_no, fqname = elem
3232
return f"{fqname} {path}:{line_no}"
3333

3434
return elem

0 commit comments

Comments
 (0)