[Python-checkins] r80852 - python/trunk/Doc/library/sysconfig.rst

andrew.kuchling python-checkins at python.org
Thu May 6 03:09:48 CEST 2010


Author: andrew.kuchling
Date: Thu May  6 03:09:47 2010
New Revision: 80852

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

Modified:
   python/trunk/Doc/library/sysconfig.rst

Modified: python/trunk/Doc/library/sysconfig.rst
==============================================================================
--- python/trunk/Doc/library/sysconfig.rst	(original)
+++ python/trunk/Doc/library/sysconfig.rst	Thu May  6 03:09:47 2010
@@ -16,9 +16,9 @@
 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`.


More information about the Python-checkins mailing list