Home
last modified time | relevance | path

Searched refs:PyDict_Update (Results 1 – 17 of 17) sorted by relevance

/third_party/python/Objects/
Dnamespaceobject.c53 return PyDict_Update(ns->ns_dict, kwds); in namespace_init()
255 if (PyDict_Update(((_PyNamespaceObject *)ns)->ns_dict, kwds) != 0) { in _PyNamespace_New()
Ddictobject.c2724 PyDict_Update(PyObject *a, PyObject *b) in PyDict_Update() function
Dtypeobject.c4131 int status = PyDict_Update(dict, classdict); in merge_class_dict()
/third_party/python/Include/
Ddictobject.h37 PyAPI_FUNC(int) PyDict_Update(PyObject *mp, PyObject *other);
/third_party/python/Doc/c-api/
Ddict.rst219 .. c:function:: int PyDict_Update(PyObject *a, PyObject *b)
222 ``a.update(b)`` in Python except that :c:func:`PyDict_Update` doesn't fall
/third_party/python/Modules/_ctypes/
D_ctypes.c519 if (-1 == PyDict_Update((PyObject *)dict, result->tp_dict)) { in StructUnionType_new()
1124 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) { in PyCPointerType_new()
1605 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) in PyCArrayType_new()
2027 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) { in CreateSwappedType()
2158 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) { in PyCSimpleType_new()
2591 if (-1 == PyDict_Update((PyObject *)stgdict, result->tp_dict)) { in PyCFuncPtrType_new()
2887 res = PyDict_Update(mydict, dict); in PyCData_setstate()
/third_party/python/Modules/_io/
Dbytesio.c874 if (PyDict_Update(self->dict, dict) < 0) in bytesio_setstate()
Dstringio.c932 if (PyDict_Update(self->dict, dict) < 0) in stringio_setstate()
/third_party/python/PC/
Dpython3dll.c183 EXPORT_FUNC(PyDict_Update)
/third_party/python/Doc/data/
Dstable_abi.dat118 function,PyDict_Update,3.2,
Drefcounts.dat568 PyDict_Update:int:::
569 PyDict_Update:PyObject*:a:0:
570 PyDict_Update:PyObject*:b:0:
/third_party/python/Modules/
D_elementtree.c375 if (attrib != NULL && PyDict_Update(attrib, kwds) < 0) { in get_attrib_from_keywords()
406 if (PyDict_Update(attrib, kwds) < 0) { in element_init()
607 if (kwds != NULL && PyDict_Update(attrib, kwds) < 0) { in subelement()
D_collectionsmodule.c2181 if (PyDict_Update(new, right)) { in defdict_or()
/third_party/python/Python/
Dimport.c531 if (PyDict_Update(mdict, def->m_base.m_copy)) { in import_find_extension()
Dpylifecycle.c1436 if (PyDict_Update(interp->builtins, interp->builtins_copy)) { in finalize_restore_builtins()
Dceval.c3362 if (PyDict_Update(dict, update) < 0) { in _PyEval_EvalFrameDefault()
3937 if (rest == NULL || PyDict_Update(rest, subject)) { in _PyEval_EvalFrameDefault()
/third_party/python/Misc/
Dstable_abi.txt504 function PyDict_Update