From cabcbbe7a518d53cd7dbb915ceccf4970c2d0ea5 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Mon, 9 Sep 2019 07:52:34 -0700 Subject: [PATCH] bpo-36797: Fix a dead link in Doc/distutils/apiref (GH-15700) (GH-15704) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://bugs.python.org/issue36797 (cherry picked from commit 2c2b561967c1916855399f809e30ae0ba7e09ae2) Co-authored-by: Miro HronĨok --- Doc/distutils/apiref.rst | 4 ++-- .../Documentation/2019-09-05-14-47-51.bpo-36797.KN9Ga5.rst | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 Misc/NEWS.d/next/Documentation/2019-09-05-14-47-51.bpo-36797.KN9Ga5.rst diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 937f19f57be..a42d2d3559f 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -6,12 +6,12 @@ API Reference .. seealso:: - `New and changed setup.py arguments in setuptools `_ + `New and changed setup.py arguments in setuptools`_ The ``setuptools`` project adds new capabilities to the ``setup`` function and other APIs, makes the API consistent across different Python versions, and is hence recommended over using ``distutils`` directly. -.. _setuptools-setup-py: https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords +.. _New and changed setup.py arguments in setuptools: https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords .. include:: ./_setuptools_disclaimer.rst diff --git a/Misc/NEWS.d/next/Documentation/2019-09-05-14-47-51.bpo-36797.KN9Ga5.rst b/Misc/NEWS.d/next/Documentation/2019-09-05-14-47-51.bpo-36797.KN9Ga5.rst new file mode 100644 index 00000000000..62a3c176b1c --- /dev/null +++ b/Misc/NEWS.d/next/Documentation/2019-09-05-14-47-51.bpo-36797.KN9Ga5.rst @@ -0,0 +1 @@ +Fix a dead link in the distutils API Reference.