Home
last modified time | relevance | path

Searched refs:PyObject_DelItem (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Include/
Dabstract.h469 PyAPI_FUNC(int) PyObject_DelItem(PyObject *o, PyObject *key);
1301 #define PyMapping_DelItem(O,K) PyObject_DelItem((O),(K))
/external/python/cpython2/PC/os2vacpp/
Dpython.def311 PyObject_DelItem
/external/python/cpython2/Doc/data/
Drefcounts.dat959 PyObject_DelItem:int:::
960 PyObject_DelItem:PyObject*:o:0:
961 PyObject_DelItem:PyObject*:key:0:
/external/python/cpython2/Objects/
Dweakrefobject.c592 return PyObject_DelItem(PyWeakref_GET_OBJECT(proxy), key); in WRAP_BINARY()
Dframeobject.c803 if (PyObject_DelItem(dict, key) != 0) in map_to_dict()
Dabstract.c195 PyObject_DelItem(PyObject *o, PyObject *key) in PyObject_DelItem() function
239 ret = PyObject_DelItem(o, okey); in PyObject_DelItemString()
/external/python/cpython2/Modules/
Doperator.c131 spam2n(op_delitem , PyObject_DelItem) in spami()
/external/python/cpython2/PC/os2emx/
Dpython27.def95 "PyObject_DelItem"
/external/python/cpython2/Python/
Dceval.c1923 err = PyObject_DelItem(v, w); in PyEval_EvalFrameEx()
2195 if ((err = PyObject_DelItem(x, w)) != 0) in PyEval_EvalFrameEx()
4767 res = PyObject_DelItem(u, slice); in assign_slice()
/external/python/cpython2/Doc/c-api/
Dobject.rst385 .. c:function:: int PyObject_DelItem(PyObject *o, PyObject *key)
Dtypeobj.rst1273 :c:func:`PyObject_DelItem`. It has the same signature as
/external/python/cpython2/Doc/whatsnew/
D2.3.rst1913 as shorthand for ``PyObject_DelItem(mapping, PyString_New(key))``.
/external/python/cpython2/Misc/
DHISTORY14519 - The abstract object API has three new functions, PyObject_DelItem,