PEP 572: Fix extra "than" typo (#734)

This commit is contained in:
Harmon 2018-07-10 19:43:29 -05:00 committed by Guido van Rossum
parent f906b988b2
commit c39a17cf11
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ found in assignment statements:
x = y = z = 0 # Equivalent: (z := (y := (x := 0)))
- Single assignment targets other than than a single ``NAME`` are
- Single assignment targets other than a single ``NAME`` are
not supported::
# No equivalent