Mailing List Archive

python/dist/src/Doc/api concrete.tex,1.10,1.11
Update of /cvsroot/python/python/dist/src/Doc/api
In directory usw-pr-cvs1:/tmp/cvs-serv3297/api

Modified Files:
concrete.tex
Log Message:
Add a (very) simple description of PyType_Ready().

Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** concrete.tex 10 Apr 2002 17:52:52 -0000 1.10
--- concrete.tex 12 Apr 2002 16:15:10 -0000 1.11
***************
*** 76,79 ****
--- 76,83 ----

\begin{cfuncdesc}{int}{PyType_Ready}{PyTypeObject *type}
+ Finalize a type object. This should be called on all type objects
+ to finish their initialization. This function is responsible for
+ adding inherited slots from a type's base class. Returns \code{0}
+ on success, or returns \code{-1} and sets an exception on error.
\versionadded{2.2}
\end{cfuncdesc}