-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
gh-91621: Fix typing.get_type_hints for collections.abc.Callable #91656
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
Changes from 3 commits
4dfc970
e93b8e4
e8c4401
6fecdfa
b45397f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -350,7 +350,11 @@ def _eval_type(t, globalns, localns, recursive_guard=frozenset()): | |
ForwardRef(arg) if isinstance(arg, str) else arg | ||
for arg in t.__args__ | ||
) | ||
t = t.__origin__[args] | ||
if (t.__origin__ is collections.abc.Callable | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I know this code pattern appears once in Generic code and once here now. Should we just convert this into one function? Maybe There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (sorry, missed this comment) |
||
and not (len(args) == 2 and _is_param_expr(args[0]))): | ||
t = t.__origin__[(args[:-1], args[-1])] | ||
else: | ||
t = t.__origin__[args] | ||
ev_args = tuple(_eval_type(a, globalns, localns, recursive_guard) for a in t.__args__) | ||
if ev_args == t.__args__: | ||
return t | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Fix :func:`typing.get_type_hints` for :class:`collections.abc.Callable`. Patch by Shantanu Jain. |
Uh oh!
There was an error while loading. Please reload this page.