Home
last modified time | relevance | path

Searched refs:PyDict_Merge (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Include/
Ddictobject.h137 PyAPI_FUNC(int) PyDict_Merge(PyObject *mp,
/external/python/cpython2/Doc/c-api/
Ddict.rst199 .. 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.c189 if (PyDict_Merge(kwappl, kw, 1) != 0) { in partial_call()
/external/python/cpython2/Objects/
Ddictobject.c1476 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/
Dpython27.def273 "PyDict_Merge"