[Python-checkins] python/dist/src/Doc/ext newtypes.tex,1.34,1.35

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sun Dec 7 06:40:19 EST 2003


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

Modified Files:
	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.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** newtypes.tex	20 Oct 2003 14:01:46 -0000	1.34
--- newtypes.tex	7 Dec 2003 11:40:17 -0000	1.35
***************
*** 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