diff options
author | Raymond Hettinger <python@rcn.com> | 2003-09-24 03:58:56 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2003-09-24 03:58:56 +0000 |
commit | 16434b5e25542da8a9023e5930c74faae6a18ad8 (patch) | |
tree | 462081a0a39ea8a173656ee03ffd0dc89cbd6485 | |
parent | 9edae346dd664f63aa4d707b9090c9638fbc9198 (diff) | |
download | cpython-git-16434b5e25542da8a9023e5930c74faae6a18ad8.tar.gz |
Fix whitespace in example
-rw-r--r-- | Doc/tut/tut.tex | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index a3bb6ba1db..e06440a00e 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -4315,11 +4315,11 @@ be trivially easy to create: \begin{verbatim} >>> def reverse(data): - for index in range(len(data)-1, -1, -1): - yield data[index] + for index in range(len(data)-1, -1, -1): + yield data[index] >>> for char in reverse('golf'): - print char + print char f l |