summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-08-24 17:46:54 (GMT)
committerGeorg Brandl <georg@python.org>2007-08-24 17:46:54 (GMT)
commitb3c572ba519040aff1624a0b2a2e2091dc660f86 (patch)
tree689e03f62a5ec8c5cad4977384e3fdd6c6fec56c
parent3376a9a711ae8ca8ca7fb4072bd69921b14a42e2 (diff)
downloadcpython-b3c572ba519040aff1624a0b2a2e2091dc660f86.zip
cpython-b3c572ba519040aff1624a0b2a2e2091dc660f86.tar.gz
cpython-b3c572ba519040aff1624a0b2a2e2091dc660f86.tar.bz2
Fix #1012: wrong URL to :mod:`site` in install/index.rst.
-rw-r--r--Doc/install/index.rst7
1 files changed, 2 insertions, 5 deletions
diff --git a/Doc/install/index.rst b/Doc/install/index.rst
index 01f17f8..c607eb9 100644
--- a/Doc/install/index.rst
+++ b/Doc/install/index.rst
@@ -604,8 +604,6 @@ value of ``sys.path``. ::
The null string in ``sys.path`` represents the current working directory.
-.. % $ <-- bow to font-lock
-
The expected convention for locally installed packages is to put them in the
:file:`{...}/site-packages/` directory, but you may want to install Python
modules into some arbitrary directory. For example, your site may have a
@@ -624,9 +622,8 @@ installing fixed versions of standard modules.)
Paths can be absolute or relative, in which case they're relative to the
directory containing the :file:`.pth` file. Any directories added to the search
-path will be scanned in turn for :file:`.pth` files. See `site module
-documentation <http://www.python.org/dev/doc/devel/lib/module-site.html>`_ for
-more information.
+path will be scanned in turn for :file:`.pth` files. See the documentation of
+the :mod:`site` module for more information.
A slightly less convenient way is to edit the :file:`site.py` file in Python's
standard library, and modify ``sys.path``. :file:`site.py` is automatically