[Python-checkins] CVS: python/dist/src/Doc/lib libundoc.tex,1.67.2.3,1.67.2.4

Fred L. Drake fdrake@weyr.cnri.reston.va.us
Fri, 3 Mar 2000 17:41:48 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Doc/lib
In directory weyr:/home/fdrake/projects/python/Doc-152p2/lib

Modified Files:
      Tag: release152p1-patches
	libundoc.tex 
Log Message:

Update description of what to do about obsolete modules; previous
explanation did not accomodate some being .py and some .so.



Index: libundoc.tex
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Doc/lib/libundoc.tex,v
retrieving revision 1.67.2.3
retrieving revision 1.67.2.4
diff -C2 -r1.67.2.3 -r1.67.2.4
*** libundoc.tex	2000/02/21 16:21:21	1.67.2.3
--- libundoc.tex	2000/03/03 22:41:45	1.67.2.4
***************
*** 87,98 ****
  
  
! \section{Obsolete}
  
! These modules are not on the standard module search path;
! \indexiii{module}{search}{path}
! but are available in the directory \file{lib-old/} installed  under
! \file{\textrm{\$prefix}/lib/python1.5/}. % $ <-- bow to font lock
! To use any of these modules, add that directory to \code{sys.path},
! possibly using \envvar{PYTHONPATH}.
  
  \begin{description}
--- 87,107 ----
  
  
! \section{Obsolete \label{obsolete-modules}}
  
! These modules are not normally available for import; additional work
! must be done to make them available.
! 
! Those which are written in Python will be installed into the directory 
! \file{lib-old/} installed as part of the standard library.  To use
! these, the directory must be added to \code{sys.path}, possibly using
! \envvar{PYTHONPATH}.
! 
! Obsolete extension modules written in C are not built by default.
! Under \UNIX, these must be enabled by uncommenting the appropriate
! lines in \file{Modules/Setup} in the build tree and either rebuilding
! Python if the modules are statically linked, or building and
! installing the shared object if using dynamically-loaded extensions.
! 
! % XXX need Windows instructions!
  
  \begin{description}