Skip to content

Commit

Permalink
Do something with objecthandling
Browse files Browse the repository at this point in the history
  • Loading branch information
da-woods committed Oct 24, 2023
1 parent a62021c commit 16eedd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cython/Utility/ObjectHandling.c
Original file line number Diff line number Diff line change
Expand Up @@ -2254,7 +2254,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyObject_FastCallDict(PyObject *func, PyObj
//@requires: PyObjectCallMethO
//@substitute: naming

#if PY_VERSION_HEX < 0x03090000 || CYTHON_COMPILING_IN_LIMITED_API
#if PY_VERSION_HEX < 0x03090000 || (CYTHON_COMPILING_IN_LIMITED_API && __Pyx_LIMITED_API_VERSION_HEX < 0x030C0000)
static PyObject* __Pyx_PyObject_FastCall_fallback(PyObject *func, PyObject **args, size_t nargs, PyObject *kwargs) {
PyObject *argstuple;
PyObject *result = 0;
Expand Down

0 comments on commit 16eedd1

Please sign in to comment.