[Python-checkins] python/dist/src/Doc/lib libfuncs.tex,1.169,1.170

doko at users.sourceforge.net doko at users.sourceforge.net
Thu Aug 5 01:18:51 CEST 2004


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

Modified Files:
	libfuncs.tex 
Log Message:
Doc/lib/libfuncs.tex: correct items in itemize
Doc/dist/dist.tex: avoid uncommenting the verbose environment (by the py2texi tool)


Index: libfuncs.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libfuncs.tex,v
retrieving revision 1.169
retrieving revision 1.170
diff -C2 -d -r1.169 -r1.170
*** libfuncs.tex	3 Aug 2004 05:17:58 -0000	1.169
--- libfuncs.tex	4 Aug 2004 23:18:49 -0000	1.170
***************
*** 807,825 ****
  \begin{itemize}
  
!     \item{Python modules' code is recompiled and the module-level code
      reexecuted, defining a new set of objects which are bound to names in
      the module's dictionary.  The \code{init} function of extension
!     modules is not called a second time.}
  
!     \item{As with all other objects in Python the old objects are only
!     reclaimed after their reference counts drop to zero.}
  
!     \item{The names in the module namespace are updated to point to
!     any new or changed objects.}
  
!     \item{Other references to the old objects (such as names external
      to the module) are not rebound to refer to the new objects and
      must be updated in each namespace where they occur if that is
!     desired.}
  
  \end{itemize}
--- 807,825 ----
  \begin{itemize}
  
!     \item Python modules' code is recompiled and the module-level code
      reexecuted, defining a new set of objects which are bound to names in
      the module's dictionary.  The \code{init} function of extension
!     modules is not called a second time.
  
!     \item As with all other objects in Python the old objects are only
!     reclaimed after their reference counts drop to zero.
  
!     \item The names in the module namespace are updated to point to
!     any new or changed objects.
  
!     \item Other references to the old objects (such as names external
      to the module) are not rebound to refer to the new objects and
      must be updated in each namespace where they occur if that is
!     desired.
  
  \end{itemize}



More information about the Python-checkins mailing list