From 16434b5e25542da8a9023e5930c74faae6a18ad8 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Wed, 24 Sep 2003 03:58:56 +0000 Subject: [PATCH] Fix whitespace in example --- Doc/tut/tut.tex | 6 +++--- 1 file 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 -- 2.50.1