Skip to content
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

Open
wants to merge 5 commits into
base: master
Choose a base branch
from

Conversation

tz-earl
Copy link

@tz-earl tz-earl commented Mar 22, 2020

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.

Copy link
Collaborator

@JukkaL JukkaL left a 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.

B = TypeVar("B", bound=complex)


In some cases, the ``@overload`` decorator can be used to provide the desired type checking. Here's an example.
Copy link
Collaborator

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.

Copy link
Author

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.

Copy link
Contributor

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]: ...

@overload
def _map2(queue: Iterable[A]) -> Iterable[A]: ...
@overload
def _map2(queue: Iterable[A], function: Callable[[A], A]) -> Iterable[A]: ...
Copy link
Collaborator

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.

@tz-earl
Copy link
Author

tz-earl commented Mar 27, 2020

@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.

@JelleZijlstra
Copy link
Member

@tz-earl you should make new local commits and push them to your remote branch. Don't force-push or rebase.

@tz-earl
Copy link
Author

tz-earl commented Mar 29, 2020

@JelleZijlstra Thank you for the helpful clarification about more commits

@97littleleaf11
Copy link
Collaborator

Hi! Could you please fix the conflicts?

@97littleleaf11 97littleleaf11 changed the title Fixes: #7864 TypeVars should be allowed to be the same Doc: TypeVars should be allowed to be the same Nov 19, 2021
@97littleleaf11 97littleleaf11 changed the title Doc: TypeVars should be allowed to be the same Add docs that TypeVars should be allowed to be the same Nov 19, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

TypeVars should be allowed to be the same
5 participants