diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-01-18 20:28:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 20:28:04 (GMT) |
commit | f9158d63b1c76a7716dc46bcb48eba19b5a648cc (patch) | |
tree | 759b59fb522044b53c1899cf5ffbce6cbe2536e3 /Doc/c-api | |
parent | a76d0104d7c4b9a92569a0d6fa064ef6cc118be2 (diff) | |
download | cpython-f9158d63b1c76a7716dc46bcb48eba19b5a648cc.zip cpython-f9158d63b1c76a7716dc46bcb48eba19b5a648cc.tar.gz cpython-f9158d63b1c76a7716dc46bcb48eba19b5a648cc.tar.bz2 |
[3.12] gh-112092: clarify unstable ABI recompilation requirements (GH-112093) (#114260)
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>
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/stable.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/stable.rst b/Doc/c-api/stable.rst index 63a100a..5b9e438 100644 --- a/Doc/c-api/stable.rst +++ b/Doc/c-api/stable.rst @@ -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. There are two tiers of C API with different stability expectations: |