diff options
author | Victor Stinner <vstinner@python.org> | 2021-09-03 14:44:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-03 14:44:02 (GMT) |
commit | 7974c30b9fd84fa56ea1515ed2c08b38edf1a383 (patch) | |
tree | 2d638f338e1e6f90765fa731ff27ef6265524723 /Modules/_functoolsmodule.c | |
parent | be9de8721d63b9d8e032d508069daf88c06542c6 (diff) | |
download | cpython-7974c30b9fd84fa56ea1515ed2c08b38edf1a383.zip cpython-7974c30b9fd84fa56ea1515ed2c08b38edf1a383.tar.gz cpython-7974c30b9fd84fa56ea1515ed2c08b38edf1a383.tar.bz2 |
bpo-45094: Add Py_NO_INLINE macro (GH-28140)
* Rename _Py_NO_INLINE macro to Py_NO_INLINE: make it public and
document it.
* Sort macros in the C API documentation.
Diffstat (limited to 'Modules/_functoolsmodule.c')
-rw-r--r-- | Modules/_functoolsmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_functoolsmodule.c b/Modules/_functoolsmodule.c index fa14521..a93c0be 100644 --- a/Modules/_functoolsmodule.c +++ b/Modules/_functoolsmodule.c @@ -186,7 +186,7 @@ partial_dealloc(partialobject *pto) /* Merging keyword arguments using the vectorcall convention is messy, so * if we would need to do that, we stop using vectorcall and fall back * to using partial_call() instead. */ -_Py_NO_INLINE static PyObject * +Py_NO_INLINE static PyObject * partial_vectorcall_fallback(PyThreadState *tstate, partialobject *pto, PyObject *const *args, size_t nargsf, PyObject *kwnames) |