8000 [3.14] gh-91048: Reorder result tuple of parse_code_object (GH-134898) by miss-islington · Pull Request #134956 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

[3.14] gh-91048: Reorder result tuple of parse_code_object (GH-134898) #134956

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 11, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
update test tools
  • Loading branch information
pablogsal committed Jun 11, 2025
commit ecc8a21a8126ac4c3d3640da0d177aa113e8337b
2 changes: 1 addition & 1 deletion Lib/asyncio/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def __init__(
# ─── indexing helpers ───────────────────────────────────────────
def _format_stack_entry(elem: tuple[str, str, int] | str) -> str:
if isinstance(elem, tuple):
path, line_no, fqname = elem
fqname, path, line_no = elem
return f"{fqname} {path}:{line_no}"

return elem
Expand Down
Loading
0