diff options
author | Victor Stinner <vstinner@redhat.com> | 2018-11-23 11:34:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-23 11:34:35 (GMT) |
commit | e89607c0fc8d6edbf19c06ba42ff0f00e6c4273f (patch) | |
tree | 311ac4970ec3455517a4bb0f3698557a23127010 /Misc | |
parent | 984061eeb49c54fee901b92e5d3dde1c7a25cfa1 (diff) | |
download | cpython-e89607c0fc8d6edbf19c06ba42ff0f00e6c4273f.zip cpython-e89607c0fc8d6edbf19c06ba42ff0f00e6c4273f.tar.gz cpython-e89607c0fc8d6edbf19c06ba42ff0f00e6c4273f.tar.bz2 |
bpo-35059: NEWS entry for macros converted to inline funcs (GH-10671)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/C API/2018-11-23-11-52-34.bpo-35059.BLSp6y.rst | 3 |
1 files changed, 3 insertions, 0 deletions
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 0000000..2512046 --- /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`. |