Fix trivial typo in PEP 572 (#691)

This commit is contained in:
Neil Schemenauer 2018-07-07 15:37:55 -07:00 committed by Guido van Rossum
parent 23a91023fa
commit 5bfcc17b8e
1 changed files with 1 additions and 1 deletions

View File

@ -981,7 +981,7 @@ became::
if (diff := x - x_base) and (g := gcd(diff, n)) > 1: if (diff := x - x_base) and (g := gcd(diff, n)) > 1:
return g return g
That ``if`` is about as long as I want my lines to get, bur remains easy That ``if`` is about as long as I want my lines to get, but remains easy
to follow. to follow.
So, in all, in most lines binding a name, I wouldn't use assignment So, in all, in most lines binding a name, I wouldn't use assignment