Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Typo
  • Loading branch information
sobolevn committed Nov 3, 2023
commit d7eae8be13e90ae0654b2a46ded488d9e8f5511c
2 changes: 1 addition & 1 deletion Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ User-defined generics for parameter expressions are also supported via parameter
specification variables in the form ``[**P]``. The behavior is consistent
with type variables' described above as parameter specification variables are
treated by the typing module as a specialized type variable. The one exception
to this is that a list of types can be used to substitute a :class:`ParamSpec`:
to this is that a list of types can be used to substitute a :class:`ParamSpec`::

>>> class Z[T, **P]: ... # T is a TypeVar; P is a ParamSpec
...
Expand Down