-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Add docs that TypeVars should be allowed to be the same #8572
base: master
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! Left a bunch of comments about minor issues and nits, but otherwise looks fine.
docs/source/common_issues.rst
Outdated
B = TypeVar("B", bound=complex) | ||
|
||
|
||
In some cases, the ``@overload`` decorator can be used to provide the desired type checking. Here's an example. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Style nit: write "... an example:" (with a colon)
A simpler workaround would be to cast the default value to the desired type using cast
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was able to eliminate the second overload def:
def map_2(queue: Iterable[A], function: Callable[[A], A]) -> Iterable[A]: ...
by using a cast like so:
map_2(list_2, cast(Callable[[B], A], identity))
Is this what you meant?
If so, I would prefer the original approach of keeping the extra overload def so that the actual call is easier to read and to understand.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, I'm not sure whether this is the workaround that @JukkaL suggested.
def map2(queue: Iterable[B], function: Callable[[B], A] = cast(Callable[[B], A], identity)) -> Iterable[A]: ...
docs/source/common_issues.rst
Outdated
@overload | ||
def _map2(queue: Iterable[A]) -> Iterable[A]: ... | ||
@overload | ||
def _map2(queue: Iterable[A], function: Callable[[A], A]) -> Iterable[A]: ... |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The second overload item doesn't seem useful, as it's just a special case of the third.
@JukkaL Thank you for your careful review of this PR. I will be adopting the minor changes and addressing the more substantive ones. Question: what's the process I should follow to make further changes to the branch for this PR? I see that there are a number of different opinions about how to do this. |
@tz-earl you should make new local commits and push them to your remote branch. Don't force-push or rebase. |
@JelleZijlstra Thank you for the helpful clarification about more commits |
Hi! Could you please fix the conflicts? |
Closes #7864.
For the Common Issues and Solutions doc, added a section TypeVars are not the same.
I'm not entirely sure about the example I concocted to show code that does pass muster with Mypy.