[Python-checkins] python/dist/src/Doc/api concrete.tex, 1.25.10.2, 1.25.10.3

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sun Oct 26 12:21:58 EST 2003


Update of /cvsroot/python/python/dist/src/Doc/api
In directory sc8-pr-cvs1:/tmp/cvs-serv2537

Modified Files:
      Tag: release23-maint
	concrete.tex 
Log Message:
Document that varlist can be NULL.

Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.25.10.2
retrieving revision 1.25.10.3
diff -C2 -d -r1.25.10.2 -r1.25.10.3
*** concrete.tex	19 Oct 2003 07:31:14 -0000	1.25.10.2
--- concrete.tex	26 Oct 2003 17:21:56 -0000	1.25.10.3
***************
*** 1734,1739 ****
    Sets the slice of \var{list} between \var{low} and \var{high} to the
    contents of \var{itemlist}.  Analogous to
!   \code{\var{list}[\var{low}:\var{high}] = \var{itemlist}}.  Returns
!   \code{0} on success, \code{-1} on failure.
  \end{cfuncdesc}
  
--- 1734,1741 ----
    Sets the slice of \var{list} between \var{low} and \var{high} to the
    contents of \var{itemlist}.  Analogous to
!   \code{\var{list}[\var{low}:\var{high}] = \var{itemlist}}.
!   The \var{itemlist} may be \NULL{}, indicating the assignment
!   of an empty list (slice deletion).
!   Returns \code{0} on success, \code{-1} on failure.
  \end{cfuncdesc}
  





More information about the Python-checkins mailing list