From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 12 May 2021 10:28:10 +0000 (-0700) Subject: bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26058) X-Git-Tag: v3.9.6~110 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ada9cdb94158a101db65af17b62cdd2ae6c3e782;p=thirdparty%2FPython%2Fcpython.git bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26058) Co-authored-by: Chas Belov <59780179+ChasBelov@users.noreply.github.com> (cherry picked from commit 6574334a68aa324394a6fd1f855ecbad20432b1e) --- diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 284b68c0010a..44417134a92a 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst @@ -208,6 +208,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