Searched refs:PyObject_DelItem (Results 1 – 17 of 17) sorted by relevance
/third_party/boost/libs/python/src/ |
D | object_protocol.cpp | 94 if (PyObject_DelItem(target.ptr(), key.ptr()) == -1) in delitem() 160 res = PyObject_DelItem(u, slice); in assign_slice()
|
/third_party/python/Doc/c-api/ |
D | mapping.rst | 9 :c:func:`PyObject_DelItem`. 48 This is an alias of :c:func:`PyObject_DelItem`.
|
D | object.rst | 338 .. c:function:: int PyObject_DelItem(PyObject *o, PyObject *key)
|
D | typeobj.rst | 2220 :c:func:`PyObject_DelItem`, :c:func:`PyObject_SetSlice` and 2276 :c:func:`PyObject_DelItem`, after trying the item assignment and deletion
|
/third_party/python/Include/ |
D | abstract.h | 309 PyAPI_FUNC(int) PyObject_DelItem(PyObject *o, PyObject *key); 815 #define PyMapping_DelItem(O,K) PyObject_DelItem((O),(K))
|
/third_party/python/Objects/ |
D | weakrefobject.c | 631 res = PyObject_DelItem(obj, key); in WRAP_BINARY()
|
D | frameobject.c | 944 if (PyObject_DelItem(dict, key) != 0) { in map_to_dict()
|
D | abstract.c | 235 PyObject_DelItem(PyObject *o, PyObject *key) in PyObject_DelItem() function 281 ret = PyObject_DelItem(o, okey); in PyObject_DelItemString()
|
D | odictobject.c | 1114 if (PyObject_DelItem(od, key) == -1) { in _odict_popkey_hash()
|
/third_party/python/Doc/data/ |
D | stable_abi.dat | 480 function,PyObject_DelItem,3.2,
|
D | refcounts.dat | 1635 PyObject_DelItem:int::: 1636 PyObject_DelItem:PyObject*:o:0: 1637 PyObject_DelItem:PyObject*:key:0:
|
/third_party/python/PC/ |
D | python3dll.c | 436 EXPORT_FUNC(PyObject_DelItem)
|
/third_party/python/Modules/ |
D | _operator.c | 568 if (-1 == PyObject_DelItem(a, b)) in _operator_delitem_impl()
|
/third_party/python/Misc/ |
D | stable_abi.txt | 1051 function PyObject_DelItem
|
D | HISTORY | 31898 - The abstract object API has three new functions, PyObject_DelItem,
|
/third_party/python/Python/ |
D | ceval.c | 2387 err = PyObject_DelItem(container, sub); in _PyEval_EvalFrameDefault() 2788 err = PyObject_DelItem(ns, name); in _PyEval_EvalFrameDefault()
|
/third_party/python/Doc/whatsnew/ |
D | 2.3.rst | 1913 as shorthand for ``PyObject_DelItem(mapping, PyString_New(key))``.
|