Searched refs:PyDict_Merge (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython2/Include/ |
D | dictobject.h | 137 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/cpython2/Modules/ |
D | _functoolsmodule.c | 189 if (PyDict_Merge(kwappl, kw, 1) != 0) { in partial_call()
|
/external/python/cpython2/Objects/ |
D | dictobject.c | 1476 result = PyDict_Merge(self, arg, 1); in dict_update_common() 1481 result = PyDict_Merge(self, kwds, 1); in dict_update_common() 1576 return PyDict_Merge(a, b, 1); in PyDict_Update() 1580 PyDict_Merge(PyObject *a, PyObject *b, int override) in PyDict_Merge() function 1694 if (PyDict_Merge(copy, o, 1) == 0) in PyDict_Copy()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 273 "PyDict_Merge"
|