@@ -78,19 +78,19 @@ used by extension writers. Structure member names do not have a reserved prefix.
78
78
79
79
The header files are typically installed with Python. On Unix, these are
80
80
located in the directories :file: `{ prefix } /include/pythonversion/ ` and
81
- :file: `{ exec_prefix } /include/pythonversion/ `, where :envvar : `prefix ` and
82
- :envvar : `exec_prefix ` are defined by the corresponding parameters to Python's
81
+ :file: `{ exec_prefix } /include/pythonversion/ `, where :option : `prefix <--prefix> ` and
82
+ :option : `exec_prefix <--exec-prefix> ` are defined by the corresponding parameters to Python's
83
83
:program: `configure ` script and *version * is
84
84
``'%d.%d' % sys.version_info[:2] ``. On Windows, the headers are installed
85
- in :file: `{ prefix } /include `, where :envvar: ` prefix ` is the installation
85
+ in :file: `{ prefix } /include `, where `` prefix ` ` is the installation
86
86
directory specified to the installer.
87
87
88
88
To include the headers, place both directories (if different) on your compiler's
89
89
search path for includes. Do *not * place the parent directories on the search
90
90
path and then use ``#include <pythonX.Y/Python.h> ``; this will break on
91
91
multi-platform builds since the platform independent headers under
92
- :envvar : `prefix ` include the platform specific headers from
93
- :envvar : `exec_prefix `.
92
+ :option : `prefix <--prefix> ` include the platform specific headers from
93
+ :option : `exec_prefix <--exec-prefix> `.
94
94
95
95
C++ users should note that although the API is defined entirely using C, the
96
96
header files properly declare the entry points to be ``extern "C" ``. As a result,
0 commit comments