python / python/mypy

Assigning an iterator to the type hint `collections.abc.Hashable` gets error even though an iterator is hashable

Open
#20,236 2 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

bug
Dominant language
Python
Stars
20.6k
Forks
3.3k
PR merge metrics
PR metrics pending

Description

*Memo:

  • Python 3.14.0
  • mypy 1.18.2
  • mypy test.py
  • Windows 11

An iterator is hashable as shown below:

print(hash(iter([0, 1, 2])))
# 127553071047

But assigning an iterator to the type hint collections.abc.Hashable gets the error as shown below even though an iterator is hashable:

from collections.abc import Hashable

v: Hashable = iter([0, 1, 2])
# Error

error: Incompatible types in assignment (expression has type "Iterator[int]", variable has type "Hashable")

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by reproducing the assignment in test.py with Python 3.14.0 and mypy 1.18.2, then trace how mypy models Iterator[int] and collections.abc.Hashable. Done means the reported mismatch is resolved or its intended static behavior is established with a regression test.

Written by the indexing model from the issue text.

Assessment

Tech stack
python
Domain
tooling
Issue type
Bug
Difficulty
4/5
Estimated time
3-5 days
Activity status
Stale
Clarity
Clearly specified
Newbie friendliness
42/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.