diff options
author | Christian Heimes <christian@python.org> | 2022-07-25 13:50:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 13:50:46 (GMT) |
commit | a566912049722386478c075b83534fa9f7a1de45 (patch) | |
tree | 9785108e48f335131dba9b384d06ce6c72b49b4e /Doc/library/sysconfig.rst | |
parent | d58be48369186590d4dfa204bf6b4c432b665281 (diff) | |
download | cpython-a566912049722386478c075b83534fa9f7a1de45.zip cpython-a566912049722386478c075b83534fa9f7a1de45.tar.gz cpython-a566912049722386478c075b83534fa9f7a1de45.tar.bz2 |
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.
Diffstat (limited to 'Doc/library/sysconfig.rst')
-rw-r--r-- | Doc/library/sysconfig.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/sysconfig.rst b/Doc/library/sysconfig.rst index fa18d62..0249887 100644 --- a/Doc/library/sysconfig.rst +++ b/Doc/library/sysconfig.rst @@ -25,7 +25,7 @@ Configuration variables 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`. +third-party C extensions compiled using ``setuptools``. :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`. |