diff options
Diffstat (limited to 'Misc/NEWS.d/next/C API/2019-06-07-14-03-52.bpo-37194.uck7MD.rst')
-rw-r--r-- | Misc/NEWS.d/next/C API/2019-06-07-14-03-52.bpo-37194.uck7MD.rst | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Misc/NEWS.d/next/C API/2019-06-07-14-03-52.bpo-37194.uck7MD.rst b/Misc/NEWS.d/next/C API/2019-06-07-14-03-52.bpo-37194.uck7MD.rst deleted file mode 100644 index c15d372..0000000 --- a/Misc/NEWS.d/next/C API/2019-06-07-14-03-52.bpo-37194.uck7MD.rst +++ /dev/null @@ -1,6 +0,0 @@ -Add a new public :c:func:`PyObject_CallNoArgs` function to the C API: call a -callable Python object without any arguments. It is the most efficient way to -call a callback without any argument. On x86-64, for example, -``PyObject_CallFunctionObjArgs(func, NULL)`` allocates 960 bytes on the stack -per call, whereas ``PyObject_CallNoArgs(func)`` only allocates 624 bytes per -call. |