Searched refs:_PyObject_GenericSetAttrWithDict (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython3/Include/cpython/ |
D | object.h | 342 _PyObject_GenericSetAttrWithDict(PyObject *, PyObject *,
|
/external/python/cpython2/Modules/ |
D | threadmodule.c | 489 return _PyObject_GenericSetAttrWithDict((PyObject *)self, name, v, ldict); in local_setattro()
|
/external/python/cpython2/Include/ |
D | object.h | 500 _PyObject_GenericSetAttrWithDict(PyObject *, PyObject *,
|
/external/python/cpython3/Objects/ |
D | object.c | 1284 _PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name, in _PyObject_GenericSetAttrWithDict() function 1361 return _PyObject_GenericSetAttrWithDict(obj, name, value, NULL); in PyObject_GenericSetAttr()
|
D | typeobject.c | 3434 res = _PyObject_GenericSetAttrWithDict((PyObject *)type, name, value, NULL); in type_setattro()
|
/external/python/cpython2/Objects/ |
D | object.c | 1470 _PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name, in _PyObject_GenericSetAttrWithDict() function 1564 return _PyObject_GenericSetAttrWithDict(obj, name, value, NULL); in PyObject_GenericSetAttr()
|
/external/python/cpython3/Modules/ |
D | _threadmodule.c | 903 return _PyObject_GenericSetAttrWithDict((PyObject *)self, name, v, ldict); in local_setattro()
|
/external/python/cpython3/Doc/howto/ |
D | descriptor.rst | 1472 'Emulate _PyObject_GenericSetAttrWithDict() Objects/object.c' 1481 'Emulate _PyObject_GenericSetAttrWithDict() Objects/object.c'
|