Searched refs:tp_setattr (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Doc/includes/ |
D | typestruct.h | 11 setattrfunc tp_setattr; member
|
/external/python/cpython3/Objects/ |
D | typeslots.inc | 69 {-1, offsetof(PyTypeObject, tp_setattr)},
|
D | object.c | 1136 if (Py_TYPE(v)->tp_setattr != NULL) in PyObject_SetAttrString() 1137 return (*Py_TYPE(v)->tp_setattr)(v, (char*)name, w); in PyObject_SetAttrString() 1389 if (tp->tp_setattr != NULL) { in PyObject_SetAttr() 1395 err = (*tp->tp_setattr)(v, (char *)name_str, value); in PyObject_SetAttr()
|
D | typeobject.c | 3967 if (base->tp_setattr == NULL && base->tp_setattro == NULL) { in type_new_set_slots() 7603 if (type->tp_setattr == NULL && type->tp_setattro == NULL) { in inherit_slots() 7604 type->tp_setattr = base->tp_setattr; in inherit_slots() 10199 TPSLOT(__setattr__, tp_setattr, NULL, NULL, ""), 10200 TPSLOT(__delattr__, tp_setattr, NULL, NULL, ""),
|
/external/python/cpython3/Include/cpython/ |
D | object.h | 157 setattrfunc tp_setattr; member
|
/external/python/cpython3/Doc/extending/ |
D | newtypes.rst | 215 setattrfunc tp_setattr; 345 The :c:member:`~PyTypeObject.tp_setattr` handler is called when the :meth:`~object.__setattr__` or 349 :c:member:`~PyTypeObject.tp_setattr` handler should be set to ``NULL``. ::
|
/external/python/cpython3/Doc/c-api/ |
D | typeobj.rst | 57 …| (:c:member:`~PyTypeObject.tp_setattr`) | :c:type:`setattrfunc` | __setattr__… 766 .. c:member:: setattrfunc PyTypeObject.tp_setattr 776 Group: :c:member:`~PyTypeObject.tp_setattr`, :c:member:`~PyTypeObject.tp_setattro` 779 …inherits both :c:member:`~PyTypeObject.tp_setattr` and :c:member:`~PyTypeObject.tp_setattro` from … 780 …the subtype's :c:member:`~PyTypeObject.tp_setattr` and :c:member:`~PyTypeObject.tp_setattro` are b… 981 Group: :c:member:`~PyTypeObject.tp_setattr`, :c:member:`~PyTypeObject.tp_setattro` 983 This field is inherited by subtypes together with :c:member:`~PyTypeObject.tp_setattr`: a subtype 984 …inherits both :c:member:`~PyTypeObject.tp_setattr` and :c:member:`~PyTypeObject.tp_setattro` from … 985 …the subtype's :c:member:`~PyTypeObject.tp_setattr` and :c:member:`~PyTypeObject.tp_setattro` are b… 2742 0, /* tp_setattr */
|
/external/python/cpython3/Doc/data/ |
D | python3.13.abi | 14650 …<var-decl name='tp_setattr' type-id='type-id-990' visibility='default' filepath='./Include/cpython…
|