Staging
v0.5.1
https://github.com/python/cpython
Revision 924b5711049bb906bfde08ea1fee5118e57280ac authored by Gerhard Häring on 05 March 2010, 15:50:25 UTC, committed by Gerhard Häring on 05 March 2010, 15:50:25 UTC
1 parent f580a5b
Raw File
Tip revision: 924b5711049bb906bfde08ea1fee5118e57280ac authored by Gerhard Häring on 05 March 2010, 15:50:25 UTC
Issue #7670: sqlite3: Fixed crashes when operating on closed connections.
Tip revision: 924b571
distutils.rst

:mod:`distutils` --- Building and installing Python modules
===========================================================

.. module:: distutils
   :synopsis: Support for building and installing Python modules into an existing Python
              installation.
.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>


The :mod:`distutils` package provides support for building and installing
additional modules into a Python installation.  The new modules may be either
100%-pure Python, or may be extension modules written in C, or may be
collections of Python packages which include modules coded in both Python and C.

This package is discussed in two separate chapters:


.. seealso::

   :ref:`distutils-index`
      The manual for developers and packagers of Python modules.  This describes how
      to prepare :mod:`distutils`\ -based packages so that they may be easily
      installed into an existing Python installation.

   :ref:`install-index`
      An "administrators" manual which includes information on installing modules into
      an existing Python installation. You do not need to be a Python programmer to
      read this manual.

back to top