From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Mon, 2 Jun 2025 22:08:20 +0000 (+0100) Subject: gh-134830: Fix reference in `Doc/extending/windows.rst` (GH-134831) X-Git-Tag: v3.15.0a1~1405 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0ac9e17fb47075c9446b99da4dffe4cad993b97a;p=thirdparty%2FPython%2Fcpython.git gh-134830: Fix reference in `Doc/extending/windows.rst` (GH-134831) Co-authored-by: Miro HronĨok --- diff --git a/Doc/c-api/stable.rst b/Doc/c-api/stable.rst index 124e58cf950b..9b65e0b8d23d 100644 --- a/Doc/c-api/stable.rst +++ b/Doc/c-api/stable.rst @@ -51,6 +51,7 @@ It is generally intended for specialized, low-level tools like debuggers. Projects that use this API are expected to follow CPython development and spend extra effort adjusting to changes. +.. _stable-application-binary-interface: Stable Application Binary Interface =================================== diff --git a/Doc/extending/windows.rst b/Doc/extending/windows.rst index 56aa44e4e58c..a97c6182553c 100644 --- a/Doc/extending/windows.rst +++ b/Doc/extending/windows.rst @@ -121,7 +121,7 @@ When creating DLLs in Windows, you can use the CPython library in two ways: :file:`Python.h` triggers an implicit, configure-aware link with the library. The header file chooses :file:`pythonXY_d.lib` for Debug, :file:`pythonXY.lib` for Release, and :file:`pythonX.lib` for Release with - the `Limited API `_ enabled. + the :ref:`Limited API ` enabled. To build two DLLs, spam and ni (which uses C functions found in spam), you could use these commands::