From a68d968f10dec06683ae97505548df732f7e0ac3 Mon Sep 17 00:00:00 2001 From: Chris Angelico Date: Sat, 1 Jul 2017 13:32:43 +1000 Subject: [PATCH] Reword docs to avoid saying things that aren't accurate --- Doc/reference/compound_stmts.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/reference/compound_stmts.rst b/Doc/reference/compound_stmts.rst index 4b425a482096b1..762ef07dfe2135 100644 --- a/Doc/reference/compound_stmts.rst +++ b/Doc/reference/compound_stmts.rst @@ -192,7 +192,7 @@ those made in the suite of the for-loop:: Names in the target list are not deleted when the loop is finished, but if the sequence is empty, they will not have been assigned to at all by the loop. Hint: -the built-in function :func:`range` returns an iterator of integers suitable to +Python's built-in :func:`range` gives you a sequence of integers suitable to emulate the effect of Pascal's ``for i := a to b do``; e.g., ``list(range(3))`` returns the list ``[0, 1, 2]``.