[Python-checkins] python/dist/src/Doc/lib libfuncs.tex,1.166,1.167

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Thu Jul 29 08:06:36 CEST 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5440

Modified Files:
	libfuncs.tex 
Log Message:
SF bug #997533: "disjunct" should be "disjoint"

* Use plain wording in docs for id().
* Use normal quotation marks instead of single quotes in the description.



Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.166
retrieving revision 1.167
diff -C2 -d -r1.166 -r1.167
*** libfuncs.tex	2 Jul 2004 06:41:04 -0000	1.166
--- libfuncs.tex	29 Jul 2004 06:06:34 -0000	1.167
***************
*** 510,517 ****
  
  \begin{funcdesc}{id}{object}
!   Return the `identity' of an object.  This is an integer (or long
    integer) which is guaranteed to be unique and constant for this
!   object during its lifetime.  Two objects whose lifetimes are
!   disjunct may have the same \function{id()} value.  (Implementation
    note: this is the address of the object.)
  \end{funcdesc}
--- 510,517 ----
  
  \begin{funcdesc}{id}{object}
!   Return the ``identity'' of an object.  This is an integer (or long
    integer) which is guaranteed to be unique and constant for this
!   object during its lifetime.  Two objects with non-overlapping lifetimes
!   may have the same \function{id()} value.  (Implementation
    note: this is the address of the object.)
  \end{funcdesc}



More information about the Python-checkins mailing list