From e89607c0fc8d6edbf19c06ba42ff0f00e6c4273f Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 23 Nov 2018 12:34:35 +0100 Subject: [PATCH] bpo-35059: NEWS entry for macros converted to inline funcs (GH-10671) --- .../NEWS.d/next/C API/2018-11-23-11-52-34.bpo-35059.BLSp6y.rst | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Misc/NEWS.d/next/C API/2018-11-23-11-52-34.bpo-35059.BLSp6y.rst diff --git a/Misc/NEWS.d/next/C API/2018-11-23-11-52-34.bpo-35059.BLSp6y.rst b/Misc/NEWS.d/next/C API/2018-11-23-11-52-34.bpo-35059.BLSp6y.rst new file mode 100644 index 00000000000..25120466f7b --- /dev/null +++ b/Misc/NEWS.d/next/C API/2018-11-23-11-52-34.bpo-35059.BLSp6y.rst @@ -0,0 +1,3 @@ +The following C macros have been converted to static inline functions: +:c:func:`Py_INCREF`, :c:func:`Py_DECREF`, :c:func:`Py_XINCREF`, +:c:func:`Py_XDECREF`, :c:func:`PyObject_INIT`, :c:func:`PyObject_INIT_VAR`.