Lines Matching defs:obj
185 /* Call the method named 'name' of object 'obj' with a variable number of
193 obj.name(arg1, arg2, ...). */
194 PyAPI_FUNC(PyObject *) PyObject_CallMethod(PyObject *obj,
202 PyAPI_FUNC(PyObject *) _PyObject_CallMethod_SizeT(PyObject *obj,
218 /* Call the method named 'name' of object 'obj' with a variable number of
224 This is the equivalent of the Python expression: obj.name(*args). */
227 PyObject *obj,
326 PyAPI_FUNC(int) PyObject_AsCharBuffer(PyObject *obj,
334 Py_DEPRECATED(3.0) PyAPI_FUNC(int) PyObject_CheckReadBuffer(PyObject *obj);
343 PyAPI_FUNC(int) PyObject_AsReadBuffer(PyObject *obj,
354 PyAPI_FUNC(int) PyObject_AsWriteBuffer(PyObject *obj,
362 obj.__format__(format_spec). */
363 PyAPI_FUNC(PyObject *) PyObject_Format(PyObject *obj,
379 /* Returns non-zero if the object 'obj' provides iterator protocols, and 0 otherwise.
384 /* Returns non-zero if the object 'obj' provides AsyncIterator protocols, and 0 otherwise.
518 /* Returns 1 if obj is an index integer (has the nb_index slot of the