[Distutils] Installation: new code, new docs

Joe Van Andel vanandel@ucar.edu
Mon, 27 Mar 2000 11:16:25 -0700


This is a multi-part message in MIME format.
--------------B5E0D3A06DAD98A6E9881B43
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

>Oops, shoulda mentioned that on the list: I unilaterally and arbitrarily
>changed the name of that option to 'extra_path', since I think that's a
>bit more descriptive.  (So I guess it wasn't *completely* arbitrary.)

I've attached a patch for the USAGE.txt document, to reflect this
change.

 


-- 
Joe VanAndel  	          
National Center for Atmospheric Research
http://www.atd.ucar.edu/~vanandel/
Internet: vanandel@ucar.edu
--------------B5E0D3A06DAD98A6E9881B43
Content-Type: text/plain; charset=us-ascii;
 name="USAGE.udiff"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
 filename="USAGE.udiff"

--- USAGE.txt.orig	Mon Mar 27 10:18:58 2000
+++ USAGE.txt	Mon Mar 27 10:26:27 2000
@@ -708,7 +708,7 @@
      "/usr/local/lib/python1.5/site-packages"]
     [DOS/Windows default: 'prefix', eg. "C:\Python"]
     [actually it gets more complicated in the presence of the
-     'install_path' option; see below]
+     'extra_path' option; see below]
 
   install_site_platlib:
     base installation directory for third-party extension modules
@@ -716,18 +716,18 @@
      "/usr/local.plat/lib/python1.5/site-packages"]
     [DOS/Windows default: 'exec_prefix', eg. "C:\Python"]
 
-  install_path:
+  extra_path:
     information about extra intervening directories to put between
     'install_lib' and 'install_sitelib', along with a .pth file to
     ensure that those directories wind up in sys.path.  Can be a 1- or
     2-tuple, or a comma-delimited string with 1 or 2 parts.  The
     1-element case is simpler: the .pth file and directory have the same
-    name (except for ".pth").  Eg. if install_path is "foo" or ("foo",),
+    name (except for ".pth").  Eg. if extra_path is "foo" or ("foo",),
     then Distutils sets 'install_site_lib' to 'install_lib' +
     "site-packages/foo", and puts foo.path in the "site-packages"
     directory; it contains just "foo".  The 2-element case allows the
     .pth file and intervening directories to be named differently; eg.
-    if 'install_path' is ("foo","foo/bar/baz") (or "foo,foo/bar/baz"),
+    if 'extra_path' is ("foo","foo/bar/baz") (or "foo,foo/bar/baz"),
     then Distutils will set 'install_site_lib' to 'install_lib' +
     "site-packages/foo/bar/baz", and put "foo.pth" containing
     "foo/bar/baz" in the "site-packages" directory.

--------------B5E0D3A06DAD98A6E9881B43--