diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2010-05-06 01:09:47 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2010-05-06 01:09:47 (GMT) |
commit | 4758183f0af7443f500a26c4f6444b1a949c7255 (patch) | |
tree | 68faff0e3c8e7557dfdac836cb1367ff0bf9fa5c | |
parent | 1f7de71090ab4e04413ab17dbe36ee2373c201c6 (diff) | |
download | cpython-4758183f0af7443f500a26c4f6444b1a949c7255.zip cpython-4758183f0af7443f500a26c4f6444b1a949c7255.tar.gz cpython-4758183f0af7443f500a26c4f6444b1a949c7255.tar.bz2 |
Reword paragraph; fix filename, which should be pyconfig.h
-rw-r--r-- | Doc/library/sysconfig.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/sysconfig.rst b/Doc/library/sysconfig.rst index 63a537f..38aae0a 100644 --- a/Doc/library/sysconfig.rst +++ b/Doc/library/sysconfig.rst @@ -16,9 +16,9 @@ relevant for the current platform. Configuration variables ----------------------- -A Python distribution contains a :file:`Makefile` file and a :file:`python.h` -that are necessary to build the Python binary itself, but also any C extension -created in a third party project and compiled using :mod:`distutils`. +A Python distribution contains a :file:`Makefile` and a :file:`pyconfig.h` +header file that are necessary to build both the Python binary itself and +third-party C extensions compiled using :mod:`distutils`. :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`. |