]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26057)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 12 May 2021 10:25:54 +0000 (03:25 -0700)
committerGitHub <noreply@github.com>
Wed, 12 May 2021 10:25:54 +0000 (11:25 +0100)
Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com>
(cherry picked from commit 6574334a68aa324394a6fd1f855ecbad20432b1e)

Co-authored-by: Irit Katriel <iritkatriel@yahoo.com>
Doc/tutorial/controlflow.rst

index 0b09c18170dd8408028ab0467ed255698d0731b2..ee2c3e5b5853c7b4fc806ea6f3fa6491ac5c7b58 100644 (file)
@@ -214,6 +214,7 @@ iteration of the loop::
     ...         print("Found an even number", num)
     ...         continue
     ...     print("Found an odd number", num)
+    ...
     Found an even number 2
     Found an odd number 3
     Found an even number 4