[Python-checkins] bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26058)

iritkatriel webhook-mailer at python.org
Wed May 12 06:28:14 EDT 2021


https://github.com/python/cpython/commit/ada9cdb94158a101db65af17b62cdd2ae6c3e782
commit: ada9cdb94158a101db65af17b62cdd2ae6c3e782
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: iritkatriel <iritkatriel at yahoo.com>
date: 2021-05-12T11:28:10+01:00
summary:

bpo-40640: doc -- add missing ... in example of Continue (GH-26055) (GH-26058)

Co-authored-by: Chas Belov <59780179+ChasBelov at users.noreply.github.com>
(cherry picked from commit 6574334a68aa324394a6fd1f855ecbad20432b1e)

files:
M Doc/tutorial/controlflow.rst

diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 284b68c0010aac..44417134a92ad9 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



More information about the Python-checkins mailing list