https://github.com/python/cpython/commit/1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2 commit: 1bf983ce7eb8bfd17dc18102b61dfbdafe0deda2 branch: main author: GabrielAnguita <60579349+GabrielAnguita at users.noreply.github.com> committer: JelleZijlstra <jelle.zijlstra at gmail.com> date: 2022年11月21日T20:02:55-08:00 summary: gh-99662: fix typo in typing.TypeVarTuple docs (#99672) files: M Doc/library/typing.rst diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 0ec4499f94f5..94c9cb11f02d 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -1339,7 +1339,7 @@ These are not used in annotations. They are building blocks for creating generic ``Unpack[Ts]``.) Type variable tuples must *always* be unpacked. This helps distinguish type - variable types from normal type variables:: + variable tuples from normal type variables:: x: Ts # Not valid x: tuple[Ts] # Not valid