[Python-checkins] CVS: python/dist/src/Doc/api concrete.tex,1.8,1.9

Fred L. Drake fdrake@users.sourceforge.net
Tue, 12 Mar 2002 12:12:56 -0800


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

Modified Files:
	concrete.tex 
Log Message:
Add a note that Py_None needs the same reference count treatment as any
other PyObject *.
This closes SF bug #494007.


Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** concrete.tex	23 Jan 2002 10:54:41 -0000	1.8
--- concrete.tex	12 Mar 2002 20:12:54 -0000	1.9
***************
*** 75,79 ****
  \begin{cvardesc}{PyObject*}{Py_None}
    The Python \code{None} object, denoting lack of value.  This object
!   has no methods.
  \end{cvardesc}
  
--- 75,80 ----
  \begin{cvardesc}{PyObject*}{Py_None}
    The Python \code{None} object, denoting lack of value.  This object
!   has no methods.  It needs to be treated just like any other object
!   with respect to reference counts.
  \end{cvardesc}