diff --git a/stdlib/3/typing.pyi b/stdlib/3/typing.pyi index 411ddd682..44796424e 100644 --- a/stdlib/3/typing.pyi +++ b/stdlib/3/typing.pyi @@ -49,6 +49,12 @@ if sys.version_info >= (3, 8): if sys.version_info < (3, 7): class GenericMeta(type): ... +if sys.version_info >= (3, 10): + class ParamSpec: + __name__: str + def __init__(self, name: str) -> None: ... + Concatenate: _SpecialForm = ... + # Return type that indicates a function does not return. # This type is equivalent to the None type, but the no-op Union is necessary to # distinguish the None type from the None value.