[Python-checkins] python/dist/src/Doc/ext newtypes.tex, 1.31.8.3, 1.31.8.4

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sun Dec 7 06:43:58 EST 2003


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

Modified Files:
      Tag: release23-maint
	newtypes.tex 
Log Message:
SF patch #838938:  Typos in the docs (Extending/Embedding + Python/C API) 
(Contributed by Florent Rougon.)



Index: newtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/ext/newtypes.tex,v
retrieving revision 1.31.8.3
retrieving revision 1.31.8.4
diff -C2 -d -r1.31.8.3 -r1.31.8.4
*** newtypes.tex	20 Oct 2003 14:34:44 -0000	1.31.8.3
--- newtypes.tex	7 Dec 2003 11:43:56 -0000	1.31.8.4
***************
*** 538,542 ****
  \end{verbatim}
  
! Note that used the \constant{METH_NOARGS} flag to indicate that the
  method is passed no arguments.
  
--- 538,542 ----
  \end{verbatim}
  
! Note that we used the \constant{METH_NOARGS} flag to indicate that the
  method is passed no arguments.
  
***************
*** 684,688 ****
  
  In this example, we create a list that contains itself. When we delete
! it, it still has a reference from itself. It's reference count doesn't
  drop to zero.  Fortunately, Python's cyclic-garbage collector will
  eventually figure out that the list is garbage and free it.
--- 684,688 ----
  
  In this example, we create a list that contains itself. When we delete
! it, it still has a reference from itself. Its reference count doesn't
  drop to zero.  Fortunately, Python's cyclic-garbage collector will
  eventually figure out that the list is garbage and free it.





More information about the Python-checkins mailing list