diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2019-05-14 12:04:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-14 12:04:30 (GMT) |
commit | dae1229729920e3aa2be015453b7f702dff9b375 (patch) | |
tree | 8e3be6982d0c859e821fb07f45301ea673a21f0a /Doc/distutils/extending.rst | |
parent | 0a52d73ddeeac23f73c919d636e7008ddde5c72b (diff) | |
download | cpython-dae1229729920e3aa2be015453b7f702dff9b375.zip cpython-dae1229729920e3aa2be015453b7f702dff9b375.tar.gz cpython-dae1229729920e3aa2be015453b7f702dff9b375.tar.bz2 |
bpo-36797: Prune more legacy distutils documentation (GH-13092)
Removes more legacy distutils documentation, and more clearly
marks what is left as potentially outdated, with references to
setuptools as a replacement.
Diffstat (limited to 'Doc/distutils/extending.rst')
-rw-r--r-- | Doc/distutils/extending.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/distutils/extending.rst b/Doc/distutils/extending.rst index 501fd7c..1075e81 100644 --- a/Doc/distutils/extending.rst +++ b/Doc/distutils/extending.rst @@ -4,6 +4,8 @@ Extending Distutils ******************* +.. include:: ./_setuptools_disclaimer.rst + Distutils can be extended in various ways. Most extensions take the form of new commands or replacements for existing commands. New commands may be written to support new types of platform-specific packaging, for example, while |