Home
last modified time | relevance | path

Searched refs:cbresult (Results 1 – 2 of 2) sorted by relevance

/third_party/python/Objects/
Dweakrefobject.c952 PyObject *cbresult = PyObject_CallOneArg(callback, (PyObject *)ref); in handle_callback() local
954 if (cbresult == NULL) in handle_callback()
957 Py_DECREF(cbresult); in handle_callback()
/third_party/python/Doc/extending/
Dnewtypes.rst111 PyObject *cbresult;
119 cbresult = PyObject_CallNoArgs(self->my_callback);
120 if (cbresult == NULL)
123 Py_DECREF(cbresult);