[Python-checkins] CVS: python/dist/src/Doc/lib libsite.tex,1.17,1.18

Fred L. Drake python-dev@python.org
Thu, 14 Sep 2000 11:25:44 -0700


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

Modified Files:
	libsite.tex 
Log Message:

Avoid reference to specific versions of Python where possible.
This partially addresses SourceForge bug #114318.


Index: libsite.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libsite.tex,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** libsite.tex	1999/04/23 20:33:59	1.17
--- libsite.tex	2000/09/14 18:25:41	1.18
***************
*** 40,47 ****
  For example, suppose \code{sys.prefix} and \code{sys.exec_prefix} are
  set to \file{/usr/local}.  The Python \version\ library is then
! installed in \file{/usr/local/lib/python1.5} (note that only the first 
! three characters of \code{sys.version} are used to form the path
! name).  Suppose this has a subdirectory
! \file{/usr/local/lib/python1.5/site-packages} with three
  subsubdirectories, \file{foo}, \file{bar} and \file{spam}, and two
  path configuration files, \file{foo.pth} and \file{bar.pth}.  Assume
--- 40,47 ----
  For example, suppose \code{sys.prefix} and \code{sys.exec_prefix} are
  set to \file{/usr/local}.  The Python \version\ library is then
! installed in \file{/usr/local/lib/python\var{version}} (where
! \var{version} is the first three characters of \code{sys.version}).
! Suppose this has a subdirectory
! \file{/usr/local/lib/python\var{version}/site-packages} with three
  subsubdirectories, \file{foo}, \file{bar} and \file{spam}, and two
  path configuration files, \file{foo.pth} and \file{bar.pth}.  Assume