8000 gh-104050: Add typing to Argument Clinic converters by erlend-aasland · Pull Request #104547 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-104050: Add typing to Argument Clinic converters #104547

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 6 commits into from
May 16, 2023
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
Next Next commit
Merge branch 'main' into typed-clinic/converters
  • Loading branch information
AlexWaygood authored May 16, 2023
commit 75cb81ecbd6523df586647151ac44df49ef1572e
2 changes: 1 addition & 1 deletion Tools/clinic/clinic.py
5E84
Original file line numberDiff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __repr__(self) -> str:
sig_end_marker = '--'

Appender = Callable[[str], None]
Outputter = Callable[[None], str]
Outputter = Callable[[], str]
TemplateDict = dict[str, str]

class _TextAccumulator(NamedTuple):
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.
0