[Python-checkins] python/dist/src/Doc/ext newtypes.tex,1.22,1.23

dcjim@users.sourceforge.net dcjim@users.sourceforge.net
Thu, 08 May 2003 03:32:13 -0700


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

Modified Files:
	newtypes.tex 
Log Message:
Fixed a typo in an example dealloc routine that calls it's "self"
argument "obj" rather than "self".


Index: newtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ext/newtypes.tex,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** newtypes.tex	7 May 2003 19:48:13 -0000	1.22
--- newtypes.tex	8 May 2003 10:32:10 -0000	1.23
***************
*** 750,754 ****
  {
      free(obj->obj_UnderlyingDatatypePtr);
!     obj->ob_type->tp_free(self);
  }
  \end{verbatim}
--- 750,754 ----
  {
      free(obj->obj_UnderlyingDatatypePtr);
!     obj->ob_type->tp_free(obj);
  }
  \end{verbatim}