commit | 40383c8f10c6a34aee6f513dc30b2005951cc30b | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon Feb 15 17:50:33 2016 +0100 |
committer | Georg Brandl <georg@python.org> | Mon Feb 15 17:50:33 2016 +0100 |
tree | 40501e8414e87fc230d3485841ca09efa71a0ce3 | |
parent | 00538ffe3a291f6c35baf15d0ca61dcf6a74314b [diff] |
Minor clarification in tutorial.
diff --git a/Doc/tutorial/controlflow.rst b/Doc/tutorial/controlflow.rst index 813c828..8453796 100644 --- a/Doc/tutorial/controlflow.rst +++ b/Doc/tutorial/controlflow.rst
@@ -78,6 +78,9 @@ >>> words ['defenestrate', 'cat', 'window', 'defenestrate'] +With ``for w in words:``, the example would attempt to create an infinite list, +inserting ``defenestrate`` over and over again. + .. _tut-range: