[3.13] [docs] TypeVarTuple default is keyword-only (GH-119215) (#119224)

(cherry picked from commit e406b399f9)

Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
This commit is contained in:
Miss Islington (bot) 2024-05-20 17:57:19 +02:00 committed by GitHub
parent a52ed7e6d9
commit 8f3fc01c4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1780,7 +1780,7 @@ without the dedicated syntax, as documented below.
.. _typevartuple: .. _typevartuple:
.. class:: TypeVarTuple(name, default=typing.NoDefault) .. class:: TypeVarTuple(name, *, default=typing.NoDefault)
Type variable tuple. A specialized form of :ref:`type variable <typevar>` Type variable tuple. A specialized form of :ref:`type variable <typevar>`
that enables *variadic* generics. that enables *variadic* generics.