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

iritkatriel webhook-mailer at python.org
Wed May 12 06:25:59 EDT 2021


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

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

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


Co-authored-by: Irit Katriel <iritkatriel at yahoo.com>

files:
M Doc/tutorial/controlflow.rst

diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 0b09c18170dd84..ee2c3e5b5853c7 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



More information about the Python-checkins mailing list