Searched refs:PyDict_Update (Results 1 – 17 of 17) sorted by relevance
/third_party/python/Objects/ |
D | namespaceobject.c | 53 return PyDict_Update(ns->ns_dict, kwds); in namespace_init() 255 if (PyDict_Update(((_PyNamespaceObject *)ns)->ns_dict, kwds) != 0) { in _PyNamespace_New()
|
D | dictobject.c | 2724 PyDict_Update(PyObject *a, PyObject *b) in PyDict_Update() function
|
D | typeobject.c | 4131 int status = PyDict_Update(dict, classdict); in merge_class_dict()
|
/third_party/python/Include/ |
D | dictobject.h | 37 PyAPI_FUNC(int) PyDict_Update(PyObject *mp, PyObject *other);
|
/third_party/python/Doc/c-api/ |
D | dict.rst | 219 .. 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.c | 519 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/ |
D | bytesio.c | 874 if (PyDict_Update(self->dict, dict) < 0) in bytesio_setstate()
|
D | stringio.c | 932 if (PyDict_Update(self->dict, dict) < 0) in stringio_setstate()
|
/third_party/python/PC/ |
D | python3dll.c | 183 EXPORT_FUNC(PyDict_Update)
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 118 function,PyDict_Update,3.2,
|
D | refcounts.dat | 568 PyDict_Update:int::: 569 PyDict_Update:PyObject*:a:0: 570 PyDict_Update:PyObject*:b:0:
|
/third_party/python/Modules/ |
D | _elementtree.c | 375 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.c | 2181 if (PyDict_Update(new, right)) { in defdict_or()
|
/third_party/python/Python/ |
D | import.c | 531 if (PyDict_Update(mdict, def->m_base.m_copy)) { in import_find_extension()
|
D | pylifecycle.c | 1436 if (PyDict_Update(interp->builtins, interp->builtins_copy)) { in finalize_restore_builtins()
|
D | ceval.c | 3362 if (PyDict_Update(dict, update) < 0) { in _PyEval_EvalFrameDefault() 3937 if (rest == NULL || PyDict_Update(rest, subject)) { in _PyEval_EvalFrameDefault()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 504 function PyDict_Update
|