[Python-checkins] controlflow: Use full example for "5 through 9" (GH-5907)

Miss Islington (bot) webhook-mailer at python.org
Fri Mar 9 15:11:33 EST 2018


https://github.com/python/cpython/commit/3f7d0b69f2175ff74157673148b2e45b7a2498b6
commit: 3f7d0b69f2175ff74157673148b2e45b7a2498b6
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-03-09T12:11:30-08:00
summary:

controlflow: Use full example for "5 through 9" (GH-5907)


Replace example result of "5 through 9" with complete list: "5, 6, 7, 8, 9".
This format is more consistent with the surrounding examples.
(cherry picked from commit 83d7062d2dc5eacfef578e072bca4747c346fdae)

Co-authored-by: Steven M. Vascellaro <S.Vascellaro at gmail.com>

files:
M Doc/tutorial/controlflow.rst

diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst
index 36b093950e10..30ef159f8b36 100644
--- a/Doc/tutorial/controlflow.rst
+++ b/Doc/tutorial/controlflow.rst
@@ -105,7 +105,7 @@ is possible to let the range start at another number, or to specify a different
 increment (even negative; sometimes this is called the 'step')::
 
     range(5, 10)
-       5 through 9
+       5, 6, 7, 8, 9
 
     range(0, 10, 3)
        0, 3, 6, 9



More information about the Python-checkins mailing list