[Python-checkins] python/dist/src/Doc/lib libfuncs.tex, 1.175.2.5, 1.175.2.6

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Wed Aug 3 09:18:06 CEST 2005


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24581/Doc/lib

Modified Files:
      Tag: release24-maint
	libfuncs.tex 
Log Message:
backport 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.175.2.5
retrieving revision 1.175.2.6
diff -u -d -r1.175.2.5 -r1.175.2.6
--- libfuncs.tex	22 Jul 2005 18:40:02 -0000	1.175.2.5
+++ libfuncs.tex	3 Aug 2005 07:18:04 -0000	1.175.2.6
@@ -737,7 +737,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