From a6b8d8c537c22849c0b084a148d911920ae146d5 Mon Sep 17 00:00:00 2001 From: "Eric V. Smith" Date: Sat, 8 Aug 2015 02:48:16 -0400 Subject: [PATCH] Normalize examples. --- pep-0498.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0498.txt b/pep-0498.txt index e217d0342..909ff401f 100644 --- a/pep-0498.txt +++ b/pep-0498.txt @@ -292,7 +292,7 @@ work sometimes and raise an error at other times:: or:: >>> for x in (32, 100, 'fifty'): - ... f'x = {x:+3}' + ... print(f'x = {x:+3}') ... 'x = +32' 'x = +100'