Lines Matching defs:object
18 /* this object is used delimit args and keywords in the cache keys */
34 /* partial object **********************************************************/
76 // The type of "func" might not be exactly the same type object
268 /* Set pto->vectorcall depending on the parameters of the partial object */
337 "function object to use in future partial calls"},
506 PyObject *object;
513 Py_CLEAR(ko->object);
532 Py_VISIT(ko->object);
538 offsetof(keyobject, object), 0,
571 PyObject *object;
575 if (!PyArg_ParseTupleAndKeywords(args, kwds, "O:K", kwargs, &object))
584 Py_INCREF(object);
585 result->object = object;
606 x = ((keyobject *) ko)->object;
607 y = ((keyobject *) other)->object;
609 PyErr_Format(PyExc_AttributeError, "object");
633 keyobject *object;
640 object = PyObject_GC_New(keyobject, state->keyobject_type);
641 if (!object)
644 object->cmp = cmp;
645 object->object = NULL;
646 PyObject_GC_Track(object);
647 return (PyObject *)object;
737 /* lru_cache object **********************************************************/
1124 prevent potentially arbitrary object clean-up code (i.e. __del__)