Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8a784af

Browse files
keysmashesmiss-islington
authored andcommitted
bpo-37814: Document the empty tuple type annotation syntax (GH-15208)
https://bugs.python.org/issue37814: > The empty tuple syntax in type annotations, `Tuple[()]`, is not obvious from the examples given in the documentation (I naively expected `Tuple[]` to work); it has been documented in PEP 484 and in mypy, but not in the documentation for the typing module. https://bugs.python.org/issue37814
1 parent 1ac2a83 commit 8a784af

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Doc/library/typing.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1245,7 +1245,8 @@ The module defines the following classes, functions and decorators:
12451245
.. data:: Tuple
12461246

12471247
Tuple type; ``Tuple[X, Y]`` is the type of a tuple of two items
1248-
with the first item of type X and the second of type Y.
1248+
with the first item of type X and the second of type Y. The type of
1249+
the empty tuple can be written as ``Tuple[()]``.
12491250

12501251
Example: ``Tuple[T1, T2]`` is a tuple of two elements corresponding
12511252
to type variables T1 and T2. ``Tuple[int, float, str]`` is a tuple

0 commit comments

Comments
 (0)