]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.11] gh-112092: clarify unstable ABI recompilation requirements (GH-112093) (#114261)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 18 Jan 2024 20:28:34 +0000 (21:28 +0100)
committerGitHub <noreply@github.com>
Thu, 18 Jan 2024 20:28:34 +0000 (21:28 +0100)
gh-112092: clarify unstable ABI recompilation requirements (GH-112093)

Use different versions in the examples for when extensions do and do not need to be recompiled to make the examples easier to understand.
(cherry picked from commit 68a7b78cd5185cbd9456f42c15ecf872a7c16f44)

Co-authored-by: DerSchinken <53398996+DerSchinken@users.noreply.github.com>
Doc/c-api/stable.rst

index 4817da41e3e2174fa67f994cf95b495914b2dc78..9a035b5445d90863067df90e07de46345a6acfdb 100644 (file)
@@ -16,7 +16,7 @@ CPython's Application Binary Interface (ABI) is forward- and
 backwards-compatible across a minor release (if these are compiled the same
 way; see :ref:`stable-abi-platform` below).
 So, code compiled for Python 3.10.0 will work on 3.10.8 and vice versa,
-but will need to be compiled separately for 3.9.x and 3.10.x.
+but will need to be compiled separately for 3.9.x and 3.11.x.
 
 Names prefixed by an underscore, such as ``_Py_InternalState``,
 are private API that can change without notice even in patch releases.