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 serhiy.storchaka
Recipients gvanrossum, kj, serhiy.storchaka
Date 2021-07-31.17:50:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1627753822.61.0.700425021755.issue44796@roundup.psfhosted.org>
In-reply-to
Content
There is also similar bug in Generic:

>>> from typing import *
>>> T = TypeVar("T")
>>> P = ParamSpec("P")
>>> class X(Generic[T, P]):
...     f: Callable[P, int]
...     x: T
... 
>>> P_2 = ParamSpec("P_2")
>>> X[int, P_2, str]
__main__.X[int, ~P_2]
History
Date User Action Args
2021-07-31 17:50:42serhiy.storchakaunlinkissue44796 messages
2021-07-31 17:50:22serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, kj
2021-07-31 17:50:22serhiy.storchakasetmessageid: <1627753822.61.0.700425021755.issue44796@roundup.psfhosted.org>
2021-07-31 17:50:22serhiy.storchakalinkissue44796 messages
2021-07-31 17:50:22serhiy.storchakacreate