diff --git a/pep-0526.txt b/pep-0526.txt index a10e10ea2..b492eb38b 100644 --- a/pep-0526.txt +++ b/pep-0526.txt @@ -177,6 +177,8 @@ one to annotate the types of variables when tuple unpacking is used:: # Tuple packing with variable annotation syntax t: Tuple[int, ...] = (1, 2, 3) + # or + t: Tuple[int, ...] = 1, 2, 3 # This only works in Python 3.8+ # Tuple unpacking with variable annotation syntax header: str