Lines Matching defs:ret
1248 PyObject *ret;
1253 ret = PyObject_CallFunction(callable, "issss", action, arg1, arg2, dbname,
1256 if (ret == NULL) {
1261 if (PyLong_Check(ret)) {
1262 rc = _PyLong_AsInt(ret);
1271 Py_DECREF(ret);
1284 PyObject *ret;
1288 ret = PyObject_CallNoArgs(callable);
1289 if (!ret) {
1294 rc = PyObject_IsTrue(ret);
1295 Py_DECREF(ret);
1363 PyObject *ret = PyObject_CallOneArg(callable, py_statement);
1365 Py_XDECREF(ret);