Lines Matching defs:meth
332 PyObject *meth;
333 if (_PyObject_LookupAttr(yf, &_Py_ID(close), &meth) < 0) {
336 if (meth) {
337 retval = _PyObject_CallNoArgs(meth);
338 Py_DECREF(meth);
467 PyObject *meth;
468 if (_PyObject_LookupAttr(yf, &_Py_ID(throw), &meth) < 0) {
472 if (meth == NULL) {
478 ret = PyObject_CallFunctionObjArgs(meth, typ, val, tb, NULL);
480 Py_DECREF(meth);