[Python-checkins] CVS: python/dist/src/Doc/api api.tex,1.56.2.14,1.56.2.15

Fred L. Drake fdrake@weyr.cnri.reston.va.us
Tue, 29 Feb 2000 11:12:58 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Doc/api
In directory weyr:/home/fdrake/projects/python/Doc-152p2/api

Modified Files:
      Tag: release152p1-patches
	api.tex 
Log Message:

Adjustment from Vladimir so that 1.6 API isn't documented for 1.5.2.

Added XXX comment to look at after merging changes for 1.6 docs.


Index: api.tex
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/api/api.tex,v
retrieving revision 1.56.2.14
retrieving revision 1.56.2.15
diff -C2 -r1.56.2.14 -r1.56.2.15
*** api.tex	2000/02/29 15:57:55	1.56.2.14
--- api.tex	2000/02/29 16:12:55	1.56.2.15
***************
*** 3453,3460 ****
  In addition to the functions aimed at handling raw memory blocks from
  the Python heap, objects in Python are allocated and released with
! \cfunction{_PyObject_New()}, \cfunction{_PyObject_NewVar()},
! \cfunction{_PyObject_Del()}, or with their corresponding macros
! \cfunction{PyObject_NEW()}, \cfunction{PyObject_NEW_VAR()},
! \cfunction{PyObject_DEL()}.
  
  % These will be explained in the next chapter on defining and
--- 3453,3465 ----
  In addition to the functions aimed at handling raw memory blocks from
  the Python heap, objects in Python are allocated and released with
! \cfunction{_PyObject_New()} and \cfunction{_PyObject_NewVar()}, or
! with their corresponding macros
! \cfunction{PyObject_NEW()} and \cfunction{PyObject_NEW_VAR()}.
! 
! % XXX use this for Python 1.6:
! % \cfunction{_PyObject_New()}, \cfunction{_PyObject_NewVar()},
! % \cfunction{_PyObject_Del()}, or with their corresponding macros
! % \cfunction{PyObject_NEW()}, \cfunction{PyObject_NEW_VAR()},
! % \cfunction{PyObject_DEL()}.
  
  % These will be explained in the next chapter on defining and