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

iritkatriel webhook-mailer at python.org
Wed May 12 06:23:07 EDT 2021


https://github.com/python/cpython/commit/6574334a68aa324394a6fd1f855ecbad20432b1e
commit: 6574334a68aa324394a6fd1f855ecbad20432b1e
branch: main
author: Irit Katriel <iritkatriel at yahoo.com>
committer: iritkatriel <iritkatriel at yahoo.com>
date: 2021-05-12T11:23:03+01:00
summary:

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

Co-authored-by: Chas Belov <59780179+ChasBelov at users.noreply.github.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