[Python-checkins] python/dist/src/Doc/lib libfuncs.tex, 1.185, 1.186
birkenfeld@users.sourceforge.net
birkenfeld at users.sourceforge.net
Wed Aug 3 09:17:36 CEST 2005
Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24435/Doc/lib
Modified Files:
libfuncs.tex
Log Message:
bug [ 1250306 ] incorrect description of range function
Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -d -r1.185 -r1.186
--- libfuncs.tex 22 Jul 2005 18:39:19 -0000 1.185
+++ libfuncs.tex 3 Aug 2005 07:17:33 -0000 1.186
@@ -775,7 +775,7 @@
\var{start} + 2 * \var{step}, \ldots]}. If \var{step} is positive,
the last element is the largest \code{\var{start} + \var{i} *
\var{step}} less than \var{stop}; if \var{step} is negative, the last
- element is the largest \code{\var{start} + \var{i} * \var{step}}
+ element is the smallest \code{\var{start} + \var{i} * \var{step}}
greater than \var{stop}. \var{step} must not be zero (or else
\exception{ValueError} is raised). Example:
More information about the Python-checkins
mailing list