diff options
author | Georg Brandl <georg@python.org> | 2008-01-20 21:10:08 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-01-20 21:10:08 (GMT) |
commit | 21297fa621509d3497508c044e0fcc024977eb9a (patch) | |
tree | 901ec3ed8b17f5b5e7ba604d1a8870218d175302 /Doc/using | |
parent | 27f7ab725b655b8f0ee5562961f02801189b93cf (diff) | |
download | cpython-21297fa621509d3497508c044e0fcc024977eb9a.zip cpython-21297fa621509d3497508c044e0fcc024977eb9a.tar.gz cpython-21297fa621509d3497508c044e0fcc024977eb9a.tar.bz2 |
Fix markup.
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/cmdline.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index cee79d9..8039795 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -340,14 +340,14 @@ These environment variables influence Python's behavior. .. envvar:: PYTHONHOME Change the location of the standard Python libraries. By default, the - libraries are searched in :file:`{prefix}/lib/python<version>` and - :file:`{exec_prefix}/lib/python<version>`, where :file:`{prefix}` and + libraries are searched in :file:`{prefix}/lib/python{version}` and + :file:`{exec_prefix}/lib/python{version}`, where :file:`{prefix}` and :file:`{exec_prefix}` are installation-dependent directories, both defaulting to :file:`/usr/local`. When :envvar:`PYTHONHOME` is set to a single directory, its value replaces both :file:`{prefix}` and :file:`{exec_prefix}`. To specify different values - for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}``. + for these, set :envvar:`PYTHONHOME` to :file:`{prefix}:{exec_prefix}`. .. envvar:: PYTHONPATH @@ -357,7 +357,7 @@ These environment variables influence Python's behavior. colons. Non-existent directories are silently ignored. The default search path is installation dependent, but generally begins with - :file:`{prefix}/lib/python<version>`` (see :envvar:`PYTHONHOME` above). It + :file:`{prefix}/lib/python{version}`` (see :envvar:`PYTHONHOME` above). It is *always* appended to :envvar:`PYTHONPATH`. If a script argument is given, the directory containing the script is |