Searched refs:PyDict_Merge (Results 1 – 11 of 11) sorted by relevance
/external/python/cpython3/Include/ |
D | dictobject.h | 44 PyAPI_FUNC(int) PyDict_Merge(PyObject *mp,
|
/external/python/cpython2/Include/ |
D | dictobject.h | 140 PyAPI_FUNC(int) PyDict_Merge(PyObject *mp,
|
/external/python/cpython2/Doc/c-api/ |
D | dict.rst | 199 .. c:function:: int PyDict_Merge(PyObject *a, PyObject *b, int override) 213 This is the same as ``PyDict_Merge(a, b, 1)`` in C, and is similar to
|
/external/python/cpython3/Doc/c-api/ |
D | dict.rst | 205 .. c:function:: int PyDict_Merge(PyObject *a, PyObject *b, int override) 217 This is the same as ``PyDict_Merge(a, b, 1)`` in C, and is similar to
|
/external/python/cpython2/Modules/ |
D | _functoolsmodule.c | 190 if (PyDict_Merge(kwappl, kw, 1) != 0) { in partial_call()
|
/external/python/cpython2/Objects/ |
D | dictobject.c | 1522 result = PyDict_Merge(self, arg, 1); in dict_update_common() 1527 result = PyDict_Merge(self, kwds, 1); in dict_update_common() 1629 return PyDict_Merge(a, b, 1); in PyDict_Update() 1633 PyDict_Merge(PyObject *a, PyObject *b, int override) in PyDict_Merge() function 1747 if (PyDict_Merge(copy, o, 1) == 0) in PyDict_Copy()
|
/external/python/cpython3/Modules/ |
D | _functoolsmodule.c | 100 if (PyDict_Merge(pto->kw, kw, 1) != 0) { in partial_new() 252 if (PyDict_Merge(kwargs2, kwargs, 1) != 0) { in partial_call()
|
/external/python/cpython3/PC/ |
D | python3.def | 104 PyDict_Merge=python39.PyDict_Merge
|
/external/python/cpython3/Objects/ |
D | dictobject.c | 2351 return PyDict_Merge(self, arg, 1); in dict_update_arg() 2360 return PyDict_Merge(self, arg, 1); in dict_update_arg() 2381 result = PyDict_Merge(self, kwds, 1); in dict_update_common() 2646 PyDict_Merge(PyObject *a, PyObject *b, int override) in PyDict_Merge() function 2732 if (PyDict_Merge(copy, o, 1) == 0) in PyDict_Copy()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 539 PyDict_Merge:int::: 540 PyDict_Merge:PyObject*:a:0: 541 PyDict_Merge:PyObject*:b:0: 542 PyDict_Merge:int:override::
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 273 "PyDict_Merge"
|