[issue43004] No type variables left in collections.abc.Callable

2021-01-22 Thread Tyler Yep
Tyler Yep added the comment: Got it, thanks! -- resolution: -> fixed stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or

[issue43004] No type variables left in collections.abc.Callable

2021-01-22 Thread Tyler Yep
New submission from Tyler Yep : The following code crashes when I try to run it, even though it passes when I use `from typing import Callable` instead. ``` from collections.abc import Callable from typing import Any, TypeVar V = TypeVar("V") Function = Callable[[list[V], V, V], fl