diff options
author | Georg Brandl <georg@python.org> | 2011-08-25 11:52:26 +0200 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-08-25 11:52:26 +0200 |
commit | e1eef41a18301dad262193a8074060cda0964990 (patch) | |
tree | f7bc51c436f1fe80a09c23406459499c64e35eb5 | |
parent | 175eb995d342ebdffb7f56d106fd47e7253a043a (diff) | |
download | cpython-git-e1eef41a18301dad262193a8074060cda0964990.tar.gz |
Close #12838: fix range() call.
-rw-r--r-- | Doc/faq/programming.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/faq/programming.rst b/Doc/faq/programming.rst index 07e681837a..8b2f04790b 100644 --- a/Doc/faq/programming.rst +++ b/Doc/faq/programming.rst @@ -171,7 +171,7 @@ tick of the interpreter's mainloop using highly optimized C implementations. Thus to get the same effect as:: L2 = [] - for i in range[3]: + for i in range(3): L2.append(L1[i]) it is much shorter and far faster to use :: |