From: ov2k Date: Thu, 25 Aug 2022 13:32:12 +0000 (-0400) Subject: Clarify API stability of PyTypeObject in relation to static types. (GH-96217) X-Git-Tag: v3.12.0a1~565 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=caa2a9799a47294441e4206037620322eea9ed06;p=thirdparty%2FPython%2Fcpython.git Clarify API stability of PyTypeObject in relation to static types. (GH-96217) Fixes: https://github.com/python/cpython/issues/95300 Related: https://github.com/python/cpython/issues/91271 --- diff --git a/Doc/c-api/typeobj.rst b/Doc/c-api/typeobj.rst index b8baa7c7dc39..dfe91ee358d0 100644 --- a/Doc/c-api/typeobj.rst +++ b/Doc/c-api/typeobj.rst @@ -2062,9 +2062,9 @@ This results in types that are limited relative to types defined in Python: :ref:`sub-interpreters `, so they should not include any subinterpreter-specific state. -Also, since :c:type:`PyTypeObject` is not part of the :ref:`stable ABI `, -any extension modules using static types must be compiled for a specific -Python minor version. +Also, since :c:type:`PyTypeObject` is only part of the :ref:`Limited API +` as an opaque struct, any extension modules using static types must be +compiled for a specific Python minor version. .. _heap-types: