[3.14] gh-134830: Fix reference in Doc/extending/windows.rst (GH-134831) (GH-135058)

(cherry picked from commit 0ac9e17fb47075c9446b99da4dffe4cad993b97a)

Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Co-authored-by: Miro Hrončok <miro@hroncok.cz>
This commit is contained in:
Miss Islington (bot) 2025-06-03 08:33:04 +02:00 committed by GitHub
parent 94306f73f0
commit d420d82c63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -51,6 +51,7 @@ It is generally intended for specialized, low-level tools like debuggers.
Projects that use this API are expected to follow Projects that use this API are expected to follow
CPython development and spend extra effort adjusting to changes. CPython development and spend extra effort adjusting to changes.
.. _stable-application-binary-interface:
Stable Application Binary Interface Stable Application Binary Interface
=================================== ===================================

View File

@ -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 :file:`Python.h` triggers an implicit, configure-aware link with the
library. The header file chooses :file:`pythonXY_d.lib` for Debug, library. The header file chooses :file:`pythonXY_d.lib` for Debug,
:file:`pythonXY.lib` for Release, and :file:`pythonX.lib` for Release with :file:`pythonXY.lib` for Release, and :file:`pythonX.lib` for Release with
the `Limited API <stable-application-binary-interface>`_ enabled. the :ref:`Limited API <stable-application-binary-interface>` enabled.
To build two DLLs, spam and ni (which uses C functions found in spam), you To build two DLLs, spam and ni (which uses C functions found in spam), you
could use these commands:: could use these commands::