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

Co-authored-by: Miro Hrončok <miro@hroncok.cz>
This commit is contained in:
Stan Ulbrych 2025-06-02 23:08:20 +01:00 committed by GitHub
parent df98a47a61
commit 0ac9e17fb4
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
CPython development and spend extra effort adjusting to changes.
.. _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
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 <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
could use these commands::