8000 Fix crash on `ErasedType` and `covers_at_runtime` by sobolevn · Pull Request #11924 · python/mypy · GitHub
[go: up one dir, main page]

Skip to content

Fix crash on ErasedType and covers_at_runtime #11924

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 5 commits into from
Jan 7, 2022
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
< 8000 div class="select-menu-blankslate select-menu-error"> Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixes CI
  • Loading branch information
sobolevn committed Jan 6, 2022
commit ad5d73ae72eeb631e6f5d186d84b17cfe298bf7d
1 change: 1 addition & 0 deletions mypy/subtypes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1167,6 +1167,7 @@ def restrict_subtype_away(t: Type, s: Type, *, ignore_promotions: bool = False)
def covers_at_runtime(item: Type, supertype: Type, ignore_promotions: bool) -> bool:
"""Will isinstance(item, supertype) always return True at runtime?"""
item = get_proper_type(item)
supertype = get_proper_type(supertype)
if (isinstance(item, (ErasedType, DeletedType))
or isinstance(supertype, (ErasedType, DeletedType))):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hmm I wonder if ErasedType instances can be nested inside unions, for example, and still cause a crash. Maybe erase_type should just propagate erased types unmodified? I don't think that DeletedType can be nested so it seems safe to handle here, though I'm not sure we need special casing for it. Did you find a use case where we encounter deleted types here, or is it here more as a defensive measure?

Copy link
Member Author
@sobolevn sobolevn Jan 6, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hm, good idea. I will try it!

Did you find a use case where we encounter deleted types here, or is it here more as a defensive measure?

More like a defensive programming. I will remove it, because it does not make much sense without ErasedType.

# It might happen when working with `lambda` arguments.
Expand Down
0