Searched refs:PyObject_DelItem (Results 1 – 13 of 13) sorted by relevance
/external/python/cpython2/Include/ |
D | abstract.h | 469 PyAPI_FUNC(int) PyObject_DelItem(PyObject *o, PyObject *key); 1301 #define PyMapping_DelItem(O,K) PyObject_DelItem((O),(K))
|
/external/python/cpython2/PC/os2vacpp/ |
D | python.def | 311 PyObject_DelItem
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 959 PyObject_DelItem:int::: 960 PyObject_DelItem:PyObject*:o:0: 961 PyObject_DelItem:PyObject*:key:0:
|
/external/python/cpython2/Objects/ |
D | weakrefobject.c | 592 return PyObject_DelItem(PyWeakref_GET_OBJECT(proxy), key); in WRAP_BINARY()
|
D | frameobject.c | 803 if (PyObject_DelItem(dict, key) != 0) in map_to_dict()
|
D | abstract.c | 195 PyObject_DelItem(PyObject *o, PyObject *key) in PyObject_DelItem() function 239 ret = PyObject_DelItem(o, okey); in PyObject_DelItemString()
|
/external/python/cpython2/Modules/ |
D | operator.c | 131 spam2n(op_delitem , PyObject_DelItem) in spami()
|
/external/python/cpython2/PC/os2emx/ |
D | python27.def | 95 "PyObject_DelItem"
|
/external/python/cpython2/Python/ |
D | ceval.c | 1923 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/ |
D | object.rst | 385 .. c:function:: int PyObject_DelItem(PyObject *o, PyObject *key)
|
D | typeobj.rst | 1273 :c:func:`PyObject_DelItem`. It has the same signature as
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.3.rst | 1913 as shorthand for ``PyObject_DelItem(mapping, PyString_New(key))``.
|
/external/python/cpython2/Misc/ |
D | HISTORY | 14519 - The abstract object API has three new functions, PyObject_DelItem,
|