Searched refs:errcheck (Results 1 – 7 of 7) sorted by relevance
110 def errcheck(result, func, args): function116 dll.my_strdup.errcheck = errcheck121 del dll.my_strdup.errcheck
92 SetupDiGetClassDevs.errcheck = ValidHandle
3082 Py_XSETREF(self->errcheck, ob); in PyCFuncPtr_set_errcheck()3089 if (self->errcheck) { in PyCFuncPtr_get_errcheck()3090 Py_INCREF(self->errcheck); in PyCFuncPtr_get_errcheck()3091 return self->errcheck; in PyCFuncPtr_get_errcheck()3892 PyObject *errcheck; in PyCFuncPtr_call() local3908 errcheck = self->errcheck /* ? self->errcheck : dict->errcheck */; in PyCFuncPtr_call()3990 if (result != NULL && errcheck) { in PyCFuncPtr_call()3991 PyObject *v = PyObject_CallFunctionObjArgs(errcheck, in PyCFuncPtr_call()4020 Py_VISIT(self->errcheck); in PyCFuncPtr_traverse()4034 Py_CLEAR(self->errcheck); in PyCFuncPtr_clear()
136 PyObject *errcheck; member
177 proc.errcheck = self._enumerate_properties_errcheck_v0
507 through the :attr:`errcheck` attribute; see the reference manual for details.1564 :attr:`restype` and assign a callable to the :attr:`errcheck` attribute.1588 .. attribute:: errcheck1773 Output parameters can be combined with the :attr:`errcheck` protocol to do1778 >>> def errcheck(result, func, args):1783 >>> GetWindowRect.errcheck = errcheck1786 If the :attr:`errcheck` function returns the argument tuple it receives1792 >>> def errcheck(result, func, args):1798 >>> GetWindowRect.errcheck = errcheck
3612 func.errcheck = item[3]