From: Irit Katriel Date: Wed, 12 May 2021 10:23:03 +0000 (+0100) Subject: bpo-40640: doc -- add missing ... in example of Continue (#26055) X-Git-Tag: v3.11.0a1~1152 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6574334a68aa324394a6fd1f855ecbad20432b1e;p=thirdparty%2FPython%2Fcpython.git bpo-40640: doc -- add missing ... in example of Continue (#26055) Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com> --- diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 0b09c18170dd..ee2c3e5b5853 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -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