10000 gh-104050: Annotate Argument Clinic parameter permutation helpers by erlend-aasland · Pull Request #106431 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-104050: Annotate Argument Clinic parameter permutation helpers #106431

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
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
Address review: import Generator from collections.abc
  • Loading branch information
erlend-aasland committed Jul 4, 2023
commit 3667a1706ed576c03f2d2f0f50d685bcdad9b2d8
3 changes: 1 addition & 2 deletions Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,11 @@
import textwrap
import traceback

from collections.abc import Callable, Iterable, Reversible
from collections.abc import Callable, Generator, Iterable, Reversible
from types import FunctionType, NoneType
from typing import (
Any,
Final,
Generator,
Literal,
NamedTuple,
NoReturn,
Expand Down
0