function,Py_SetProgramName,3.2,,
function,Py_SetPythonHome,3.2,,
function,Py_SetRecursionLimit,3.2,,
+function,Py_TYPE,3.14,,
type,Py_UCS4,3.2,,
macro,Py_UNBLOCK_THREADS,3.2,,
var,Py_UTF8Mode,3.8,,
Porting to Python 3.14
----------------------
+* In the limited C API 3.14 and newer, :c:func:`Py_TYPE` is now implemented as
+ an opaque function call to hide implementation details.
+ (Contributed by Victor Stinner in :gh:`120600`.)
+
+
Deprecated
----------
}
#endif
-// bpo-39573: The Py_SET_TYPE() function must be used to set an object type.
-static inline PyTypeObject* Py_TYPE(PyObject *ob) {
-#ifdef Py_GIL_DISABLED
- return (PyTypeObject *)_Py_atomic_load_ptr_relaxed(&ob->ob_type);
+// Py_TYPE() implementation for the stable ABI
+PyAPI_FUNC(PyTypeObject*) Py_TYPE(PyObject *ob);
+
+#if defined(Py_LIMITED_API) && Py_LIMITED_API+0 >= 0x030e0000
+ // Stable ABI implements Py_TYPE() as a function call
+ // on limited C API version 3.14 and newer.
#else
- return ob->ob_type;
-#endif
-}
-#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
-# define Py_TYPE(ob) Py_TYPE(_PyObject_CAST(ob))
+ static inline PyTypeObject* _Py_TYPE(PyObject *ob)
+ {
+ #if defined(Py_GIL_DISABLED)
+ return (PyTypeObject *)_Py_atomic_load_ptr_relaxed(&ob->ob_type);
+ #else
+ return ob->ob_type;
+ #endif
+ }
+ #if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 < 0x030b0000
+ # define Py_TYPE(ob) _Py_TYPE(_PyObject_CAST(ob))
+ #else
+ # define Py_TYPE(ob) _Py_TYPE(ob)
+ #endif
#endif
PyAPI_DATA(PyTypeObject) PyLong_Type;
"Py_SetProgramName",
"Py_SetPythonHome",
"Py_SetRecursionLimit",
+ "Py_TYPE",
"Py_UTF8Mode",
"Py_VaBuildValue",
"Py_Version",
--- /dev/null
+In the limited C API 3.14 and newer, :c:func:`Py_TYPE` is now implemented as an
+opaque function call to hide implementation details. Patch by Victor Stinner.
added = '3.13'
[function.PyEval_GetFrameLocals]
added = '3.13'
+
+[function.Py_TYPE]
+ added = '3.14'
// All constants are immortal
return Py_GetConstant(constant_id);
}
+
+
+// Py_TYPE() implementation for the stable ABI
+#undef Py_TYPE
+PyTypeObject* Py_TYPE(PyObject *ob)
+{
+ return _Py_TYPE(ob);
+}
EXPORT_FUNC(Py_SetProgramName)
EXPORT_FUNC(Py_SetPythonHome)
EXPORT_FUNC(Py_SetRecursionLimit)
+EXPORT_FUNC(Py_TYPE)
EXPORT_FUNC(Py_VaBuildValue)
EXPORT_FUNC(Py_XNewRef)
EXPORT_FUNC(PyAIter_Check)