Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dweakrefobject.c894 PyObject *cbresult = PyObject_CallFunctionObjArgs(callback, ref, NULL); in handle_callback() local
896 if (cbresult == NULL) in handle_callback()
899 Py_DECREF(cbresult); in handle_callback()
/external/python/cpython2/Doc/extending/
Dnewtypes.rst998 PyObject *cbresult;
1007 cbresult = PyObject_CallObject(self->my_callback, NULL);
1008 if (cbresult == NULL)
1011 Py_DECREF(cbresult);