Oops. Need to check not only that HAVE_DECL_ISINF is defined, but also
[python.git] / Doc / library / distutils.rst
blob534faab4073a74a18512ef5d6dacc995741d917c
2 :mod:`distutils` --- Building and installing Python modules
3 ===========================================================
5 .. module:: distutils
6    :synopsis: Support for building and installing Python modules into an existing Python
7               installation.
8 .. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
11 The :mod:`distutils` package provides support for building and installing
12 additional modules into a Python installation.  The new modules may be either
13 100%-pure Python, or may be extension modules written in C, or may be
14 collections of Python packages which include modules coded in both Python and C.
16 This package is discussed in two separate chapters:
19 .. seealso::
21    :ref:`distutils-index`
22       The manual for developers and packagers of Python modules.  This describes how
23       to prepare :mod:`distutils`\ -based packages so that they may be easily
24       installed into an existing Python installation.
26    :ref:`install-index`
27       An "administrators" manual which includes information on installing modules into
28       an existing Python installation. You do not need to be a Python programmer to
29       read this manual.