This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author kj
Recipients gvanrossum, kj, levkivskyi, serhiy.storchaka
Date 2020-12-25.15:01:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1608908465.1.0.765489007868.issue40494@roundup.psfhosted.org>
In-reply-to
Content
Now that issue42195 has been resolved by subclassing types.GenericAlias, can this be closed?

On 3.9 and 3.10:

>>> import typing, collections.abc
>>> T = typing.TypeVar('T')
>>> C2 = collections.abc.Callable[[T], T]
>>> C2[int]
collections.abc.Callable[[int], int]

It seems to be fixed :).
History
Date User Action Args
2020-12-25 15:01:05kjsetrecipients: + kj, gvanrossum, serhiy.storchaka, levkivskyi
2020-12-25 15:01:05kjsetmessageid: <1608908465.1.0.765489007868.issue40494@roundup.psfhosted.org>
2020-12-25 15:01:05kjlinkissue40494 messages
2020-12-25 15:01:05kjcreate