Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dnamespaceobject.c62 PyDict_Update(ns->ns_dict, dict) < 0); in namespace_init()
74 return PyDict_Update(ns->ns_dict, kwds); in namespace_init()
221 if (PyDict_Update(((_PyNamespaceObject*)result)->ns_dict, in namespace_replace()
228 if (PyDict_Update(((_PyNamespaceObject*)result)->ns_dict, kwargs) < 0) { in namespace_replace()
305 if (PyDict_Update(((_PyNamespaceObject *)ns)->ns_dict, kwds) != 0) { in _PyNamespace_New()
Dframeobject.c394 if (PyDict_Update(dct, self) < 0) { in framelocalsproxy_richcompare()
421 if (PyDict_Update(dct, self) < 0) { in framelocalsproxy_repr()
447 if (PyDict_Update(result, self) < 0) { in framelocalsproxy_or()
452 if (PyDict_Update(result, other) < 0) { in framelocalsproxy_or()
748 if (PyDict_Update(result, self) < 0) { in framelocalsproxy_copy()
Ddictobject.c3886 PyDict_Update(PyObject *a, PyObject *b) in PyDict_Update() function
Dtypeobject.c5787 int status = PyDict_Update(dict, classdict); in merge_class_dict()
/external/python/cpython3/Include/
Ddictobject.h37 PyAPI_FUNC(int) PyDict_Update(PyObject *mp, PyObject *other);
/external/python/cpython3/Python/
Dinterpconfig.c149 if (PyDict_Update(dict, origdict) < 0) { in interp_config_from_dict()
Dceval.c2497 if (PyDict_Update(ret, locals) < 0) { in PyEval_GetLocals()
2534 if (PyDict_Update(ret, locals) < 0) { in _PyEval_GetFrameLocals()
Dpylifecycle.c1621 if (PyDict_Update(interp->builtins, interp->builtins_copy)) { in finalize_restore_builtins()
Dimport.c1817 int rc = PyDict_Update(mdict, m_copy); in reload_singlephase_extension()
Dexecutor_cases.c.h1770 if (PyDict_Update(dict, update) < 0) {
Dbytecodes.c1730 if (PyDict_Update(dict, update) < 0) { in dummy_func()
Dgenerated_cases.c.h2596 if (PyDict_Update(dict, update) < 0) { in TARGET()
/external/python/cpython3/Modules/_testlimitedcapi/
Ddict.c240 RETURN_INT(PyDict_Update(mapping, mapping2)); in dict_update()
/external/python/cpython3/Doc/c-api/
Ddict.rst315 .. c:function:: int PyDict_Update(PyObject *a, PyObject *b)
318 ``a.update(b)`` in Python except that :c:func:`PyDict_Update` doesn't fall
/external/python/cpython3/Modules/_io/
Dbytesio.c874 if (PyDict_Update(self->dict, dict) < 0) in bytesio_setstate()
Dstringio.c964 if (PyDict_Update(self->dict, dict) < 0) in _io_StringIO___setstate___impl()
/external/python/cpython3/PC/
Dpython3dll.c192 EXPORT_FUNC(PyDict_Update)
/external/python/cpython3/Doc/data/
Dstable_abi.dat130 func,PyDict_Update,3.2,,
Drefcounts.dat583 PyDict_Update:int:::
584 PyDict_Update:PyObject*:a:0:
585 PyDict_Update:PyObject*:b:0:
Dpython3.13.abi161 …<elf-symbol name='PyDict_Update' type='func-type' binding='global-binding' visibility='default-vis…
7202PyDict_Update' mangled-name='PyDict_Update' filepath='./Include/dictobject.h' line='37' column='1'…
/external/python/cpython3/Modules/
D_elementtree.c396 if (attrib != NULL && PyDict_Update(attrib, kwds) < 0) { in get_attrib_from_keywords()
427 if (PyDict_Update(attrib, kwds) < 0) { in element_init()
624 if (kwds != NULL && PyDict_Update(attrib, kwds) < 0) { in subelement()
D_collectionsmodule.c2390 if (PyDict_Update(new, right)) { in defdict_or()
/external/python/cpython3/Misc/
Dstable_abi.toml599 [function.PyDict_Update]
/external/python/cpython3/Modules/_ctypes/
D_ctypes.c3021 res = PyDict_Update(mydict, dict); in PyCData_setstate()