[Python-checkins] CVS: python/dist/src/Doc/lib libfuncs.tex,1.64,1.65

Fred L. Drake python-dev@python.org
Wed, 28 Jun 2000 20:46:49 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv29823/lib

Modified Files:
	libfuncs.tex 
Log Message:

Make it clear that id() can return either a long integer or a plain integer.


Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.64
retrieving revision 1.65
diff -C2 -r1.64 -r1.65
*** libfuncs.tex	2000/04/06 15:06:03	1.64
--- libfuncs.tex	2000/06/29 03:46:46	1.65
***************
*** 303,311 ****
  
  \begin{funcdesc}{id}{object}
!   Return the `identity' of an object.  This is an 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}
  
--- 303,311 ----
  
  \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}