diff options
author | Fred Drake <fdrake@acm.org> | 1999-11-09 17:31:42 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-11-09 17:31:42 (GMT) |
commit | 310ee61f2036d6de6b3a64b63467e39bc5c31a1a (patch) | |
tree | 840ad3f007367ffea64e48823a31b9b68a1df457 /Doc/api/api.tex | |
parent | a24f7b759ab817468597055ac2c28c069de05ed0 (diff) | |
download | cpython-310ee61f2036d6de6b3a64b63467e39bc5c31a1a.zip cpython-310ee61f2036d6de6b3a64b63467e39bc5c31a1a.tar.gz cpython-310ee61f2036d6de6b3a64b63467e39bc5c31a1a.tar.bz2 |
Missed a couple of program options that had been marked by \code.
Diffstat (limited to 'Doc/api/api.tex')
-rw-r--r-- | Doc/api/api.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/api/api.tex b/Doc/api/api.tex index 39f838d..d2e6a44 100644 --- a/Doc/api/api.tex +++ b/Doc/api/api.tex @@ -2626,7 +2626,7 @@ for example, if the program name is \code{"/usr/local/bin/python"}, the prefix is \code{"/usr/local"}. The returned string points into static storage; the caller should not modify its value. This corresponds to the \makevar{prefix} variable in the top-level -\file{Makefile} and the \code{-}\code{-prefix} argument to the +\file{Makefile} and the \programopt{-}\programopt{-prefix} argument to the \program{configure} script at build time. The value is available to Python code as \code{sys.prefix}. It is only useful on \UNIX{}. See also the next function. @@ -2641,9 +2641,9 @@ variables; for example, if the program name is \code{"/usr/local"}. The returned string points into static storage; the caller should not modify its value. This corresponds to the \makevar{exec_prefix} variable in the top-level \file{Makefile} and the -\code{-}\code{-exec_prefix} argument to the \program{configure} script -at build time. The value is available to Python code as -\code{sys.exec_prefix}. It is only useful on \UNIX{}. +\programopt{-}\programopt{-exec_prefix} argument to the +\program{configure} script at build time. The value is available to +Python code as \code{sys.exec_prefix}. It is only useful on \UNIX{}. Background: The exec-prefix differs from the prefix when platform dependent files (such as executables and shared libraries) are |