File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -728,10 +728,14 @@ \subsection{Modifying Python's Search Path}
728728directory that's already on Python's path, usually to the
729729\file {.../site-packages/} directory. Path configuration files have an
730730extension of \file {.pth}, and each line must contain a single path
731- that will be added to \code {sys.path}. Paths can be absolute or
732- relative, in which case they're relative to the directory containing
733- the \file {.pth} file. Any directories added to the search path will
734- be scanned in turn for \file {.pth} files. See
731+ that will be appended to \code {sys.path}. (Because the new paths are
732+ appended to \code {sys.path}, modules in the added directories will not
733+ override standard modules. This means you can't use this mechanism
734+ for installing fixed versions of standard modules.)
735+
736+ Paths can be absolute or relative, in which case they're relative to
737+ the directory containing the \file {.pth} file. Any directories added
738+ to the search path will be scanned in turn for \file {.pth} files. See
735739\citetitle [http://www.python.org/dev/doc/devel/lib/module-site.html]{the
736740documentation for the \module {site } module} for more information.
737741
You can’t perform that action at this time.
0 commit comments