Lines Matching defs:object
1 /* List object implementation */
807 object: object
810 Insert object before index.
814 list_insert_impl(PyListObject *self, Py_ssize_t index, PyObject *object)
817 if (ins1(self, index, object) == 0)
852 object: object
855 Append object to the end of the list.
859 list_append(PyListObject *self, PyObject *object)
862 if (_PyList_AppendTakeRef(self, Py_NewRef(object)) < 0) {
871 iterable: object
2253 key as keyfunc: object = None
2588 value: object
2632 value: object
2665 value: object
2766 iterable: object(c_default="NULL") = ()