From: Steven M. Vascellaro Date: Fri, 9 Mar 2018 19:57:21 +0000 (-0500) Subject: controlflow: Use full example for "5 through 9" (GH-5907) X-Git-Tag: v3.8.0a1~2116 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=83d7062d2dc5eacfef578e072bca4747c346fdae;p=python 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. --- diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 36b093950e..30ef159f8b 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