Home
last modified time | relevance | path

Searched refs:_PyObject_GenericSetAttrWithDict (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Modules/
Dthreadmodule.c489 return _PyObject_GenericSetAttrWithDict((PyObject *)self, name, v, ldict); in local_setattro()
/external/python/cpython2/Include/
Dobject.h500 _PyObject_GenericSetAttrWithDict(PyObject *, PyObject *,
/external/python/cpython3/Include/
Dobject.h584 _PyObject_GenericSetAttrWithDict(PyObject *, PyObject *,
/external/python/cpython3/Objects/
Dobject.c1310 _PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name, in _PyObject_GenericSetAttrWithDict() function
1379 return _PyObject_GenericSetAttrWithDict(obj, name, value, NULL); in PyObject_GenericSetAttr()
Dtypeobject.c3263 res = _PyObject_GenericSetAttrWithDict((PyObject *)type, name, value, NULL); in type_setattro()
/external/python/cpython2/Objects/
Dobject.c1470 _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.c861 return _PyObject_GenericSetAttrWithDict((PyObject *)self, name, v, ldict); in local_setattro()