We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d14016 commit 7aa5bd0Copy full SHA for 7aa5bd0
third_party/2and3/typing_extensions.pyi
@@ -103,3 +103,12 @@ class TypeAlias: ...
103
class SupportsIndex(Protocol, metaclass=abc.ABCMeta):
104
@abc.abstractmethod
105
def __index__(self) -> int: ...
106
+
107
+# PEP 612 support for Python < 3.9
108
+if sys.version_info >= (3, 10):
109
+ from typing import Concatenate as Concatenate, ParamSpec as ParamSpec
110
+else:
111
+ class ParamSpec:
112
+ __name__: str
113
+ def __init__(self, name: str) -> None: ...
114
+ Concatenate: _SpecialForm = ...
0 commit comments