Reword paragraph; fix filename, which should be pyconfig.h

This commit is contained in:
Andrew M. Kuchling 2010-05-06 01:09:47 +00:00
parent 1f7de71090
commit 4758183f0a
1 changed files with 3 additions and 3 deletions

View File

@ -16,9 +16,9 @@ relevant for the current platform.
Configuration variables Configuration variables
----------------------- -----------------------
A Python distribution contains a :file:`Makefile` file and a :file:`python.h` A Python distribution contains a :file:`Makefile` and a :file:`pyconfig.h`
that are necessary to build the Python binary itself, but also any C extension header file that are necessary to build both the Python binary itself and
created in a third party project and compiled using :mod:`distutils`. third-party C extensions compiled using :mod:`distutils`.
:mod:`sysconfig` puts all variables found in these files in a dictionary that :mod:`sysconfig` puts all variables found in these files in a dictionary that
can be accessed using :func:`get_config_vars` or :func:`get_config_var`. can be accessed using :func:`get_config_vars` or :func:`get_config_var`.