gh-85454: Remove distutils documentation (#95239)

Most places now refer to setuptools or link to setuptools documentation.
Some examples like zipapp need to be updated later.
This commit is contained in:
Christian Heimes 2022-07-25 15:50:46 +02:00 committed by GitHub
parent d58be48369
commit a566912049
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
25 changed files with 26 additions and 4543 deletions

View file

@ -599,7 +599,7 @@ Main files of the build system
* :file:`pyconfig.h` (created by :file:`configure`);
* :file:`Modules/Setup`: C extensions built by the Makefile using
:file:`Module/makesetup` shell script;
* :file:`setup.py`: C extensions built using the :mod:`distutils` module.
* :file:`setup.py`: C extensions built using the ``setuptools`` package.
Main build steps
----------------

View file

@ -1187,11 +1187,10 @@ shipped with PyWin32. It is an embeddable IDE with a built-in debugger.
cx_Freeze
---------
`cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/>`_ is a :mod:`distutils`
extension (see :ref:`extending-distutils`) which wraps Python scripts into
executable Windows programs (:file:`{*}.exe` files). When you have done this,
you can distribute your application without requiring your users to install
Python.
`cx_Freeze <https://cx-freeze.readthedocs.io/en/latest/>`_ is a ``distutils``
extension which wraps Python scripts into executable Windows programs
(:file:`{*}.exe` files). When you have done this, you can distribute your
application without requiring your users to install Python.
Compiling Python on Windows