From: Raymond Hettinger Date: Sat, 20 Dec 2003 20:16:11 +0000 (+0000) Subject: Undo one backport too many. X-Git-Tag: v2.3.4c1~164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=92fce53f9774441f484a7428a1f68611a66180b9;p=thirdparty%2FPython%2Fcpython.git Undo one backport too many. --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 77822c44bbef..403f3d52ff2b 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -2159,21 +2159,6 @@ What is your quest? It is the holy grail. What is your favorite color? It is blue. \end{verbatim} -To loop over a sequence in reverse, first specify the sequence -in a forward direction and then call the \function{reversed()} -function. - -\begin{verbatim} ->>> for i in reversed(xrange(1,10,2)): -... print i -... -9 -7 -5 -3 -1 -\end{verbatim} - \section{More on Conditions \label{conditions}}