[Python-checkins] python/dist/src/Doc/api abstract.tex, 1.26, 1.26.12.1

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Fri Aug 8 22:38:27 EDT 2003


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

Modified Files:
      Tag: release23-maint
	abstract.tex 
Log Message:
SF patch #783807:  Clarify PySequence_Setitem ref counting
(Contributed by Jay T Miller.)



Index: abstract.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/abstract.tex,v
retrieving revision 1.26
retrieving revision 1.26.12.1
diff -C2 -d -r1.26 -r1.26.12.1
*** abstract.tex	16 Apr 2003 17:28:12 -0000	1.26
--- abstract.tex	9 Aug 2003 04:38:25 -0000	1.26.12.1
***************
*** 755,759 ****
    Assign object \var{v} to the \var{i}th element of \var{o}.  Returns
    \code{-1} on failure.  This is the equivalent of the Python
!   statement \samp{\var{o}[\var{i}] = \var{v}}.
  \end{cfuncdesc}
  
--- 755,760 ----
    Assign object \var{v} to the \var{i}th element of \var{o}.  Returns
    \code{-1} on failure.  This is the equivalent of the Python
!   statement \samp{\var{o}[\var{i}] = \var{v}}.  This function \emph{does not}
!   steal a reference to \var{v}.
  \end{cfuncdesc}
  





More information about the Python-checkins mailing list