diff options
author | Sebastian Rittau <srittau@rittau.biz> | 2024-05-20 15:31:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-20 15:31:45 (GMT) |
commit | e406b399f9f677cda3d48ed8d7c9d29a173f51f3 (patch) | |
tree | 61c84de2bea63965d2cdff2857f2ef421a8c2d56 /Doc | |
parent | 642b25b9a82c368b045709f0b94e7d5a02400ed2 (diff) | |
download | cpython-e406b399f9f677cda3d48ed8d7c9d29a173f51f3.zip cpython-e406b399f9f677cda3d48ed8d7c9d29a173f51f3.tar.gz cpython-e406b399f9f677cda3d48ed8d7c9d29a173f51f3.tar.bz2 |
[docs] TypeVarTuple default is keyword-only (#119215)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/typing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 2df2fae..a806860 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -1780,7 +1780,7 @@ without the dedicated syntax, as documented below. .. _typevartuple: -.. class:: TypeVarTuple(name, default=typing.NoDefault) +.. class:: TypeVarTuple(name, *, default=typing.NoDefault) Type variable tuple. A specialized form of :ref:`type variable <typevar>` that enables *variadic* generics. |