Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dobject.h342 _PyObject_GenericSetAttrWithDict(PyObject *, PyObject *,
/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/Objects/
Dobject.c1284 _PyObject_GenericSetAttrWithDict(PyObject *obj, PyObject *name, in _PyObject_GenericSetAttrWithDict() function
1361 return _PyObject_GenericSetAttrWithDict(obj, name, value, NULL); in PyObject_GenericSetAttr()
Dtypeobject.c3434 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.c903 return _PyObject_GenericSetAttrWithDict((PyObject *)self, name, v, ldict); in local_setattro()
/external/python/cpython3/Doc/howto/
Ddescriptor.rst1472 'Emulate _PyObject_GenericSetAttrWithDict() Objects/object.c'
1481 'Emulate _PyObject_GenericSetAttrWithDict() Objects/object.c'