8000 gh-134861: Add CSV and 🍌SV output formats to `asyncio ps` by dpdani · Pull Request #134862 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-134861: Add CSV and 🍌SV output formats to asyncio ps #134862

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

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
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
Next Next commit
Update Lib/asyncio/tools.py
Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com>
  • Loading branch information
dpdani and AA-Turner authored May 29, 2025
commit 4b77995e42d2b1fa1fa778d430688aad4acb6b1c
2 changes: 1 addition & 1 deletion Lib/asyncio/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def _display_awaited_by_tasks_csv(table, format_: TaskTableOutputFormat) -> None
case TaskTableOutputFormat.csv:
delimiter = ','
case TaskTableOutputFormat.bsv:
delimiter = '🍌'
delimiter = '\N{BANANA}'
case _:
raise ValueError(f"Unknown output format: {format_}")
csv_writer = csv.writer(sys.stdout, delimiter=delimiter)
Expand Down
Loading
0