[Python-checkins] python/dist/src/Doc/api concrete.tex,1.33,1.34

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Sat Dec 13 14:48:43 EST 2003


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

Modified Files:
	concrete.tex 
Log Message:
Note that \var{ppos} values are not consecutive and should not be altered.

Index: concrete.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/api/concrete.tex,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** concrete.tex	25 Nov 2003 21:12:14 -0000	1.33
--- concrete.tex	13 Dec 2003 19:48:41 -0000	1.34
***************
*** 1897,1901 ****
    \ctype{PyObject*} variables that will be filled in with each key and
    value, respectively, or may be \NULL.  Any references returned through
!   them are borrowed.
  
    For example:
--- 1897,1903 ----
    \ctype{PyObject*} variables that will be filled in with each key and
    value, respectively, or may be \NULL.  Any references returned through
!   them are borrowed.  \var{ppos} should not be altered during iteration.
!   Its value represents offsets within the internal dictionary structure,
!   and since the structure is sparse, the offsets are not consecutive.
  
    For example:





More information about the Python-checkins mailing list