Use _PyObject_CallNoArg()
Replace:
PyObject_CallFunctionObjArgs(callable, NULL)
with:
_PyObject_CallNoArg(callable) V
Victor Stinner committed
f17c3de2635df4f5a51c2cb6b99f3e125af19864
Parent: a5ed5f0
Replace:
PyObject_CallFunctionObjArgs(callable, NULL)
with:
_PyObject_CallNoArg(callable)