Skip to content

Commit e984453

Browse files
authored
commit 2
1 parent 68fe8c2 commit e984453

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stdlib/_collections_abc.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ if sys.version_info < (3, 15):
6666
if sys.version_info >= (3, 12):
6767
__all__ += ["Buffer"]
6868

69-
_KT_co = TypeVar("_KT_co", covariant=True) # Key type covariant containers.
69+
_KT_co = TypeVar("_KT_co", bound=Hashable, covariant=True) # Key type covariant containers.
7070
_VT_co = TypeVar("_VT_co", covariant=True) # Value type covariant containers.
7171

7272
@final

0 commit comments

Comments
 (0)