Searched refs:PyMapping_DelItem (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Doc/c-api/ |
D | mapping.rst | 35 .. c:function:: int PyMapping_DelItem(PyObject *o, PyObject *key)
|
/external/python/cpython3/Doc/c-api/ |
D | mapping.rst | 44 .. c:function:: int PyMapping_DelItem(PyObject *o, PyObject *key)
|
/external/python/cpython3/Python/ |
D | import.c | 657 PyMapping_DelItem(modules, name); in _PyImport_FixupExtensionObject() 745 PyMapping_DelItem(modules, name); in _PyImport_FindExtensionObjectEx() 831 if (PyMapping_DelItem(modules, name) < 0) { in remove_module()
|
/external/python/cpython2/Include/ |
D | abstract.h | 1301 #define PyMapping_DelItem(O,K) PyObject_DelItem((O),(K)) macro
|
/external/python/cpython3/Include/ |
D | abstract.h | 1036 #define PyMapping_DelItem(O,K) PyObject_DelItem((O),(K)) macro
|
/external/python/cpython2/Doc/data/ |
D | refcounts.dat | 687 PyMapping_DelItem:int::: 688 PyMapping_DelItem:PyObject*:o:0: 689 PyMapping_DelItem:PyObject*:key:0:
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 1198 PyMapping_DelItem:int::: 1199 PyMapping_DelItem:PyObject*:o:0: 1200 PyMapping_DelItem:PyObject*:key:0:
|
/external/python/cpython2/Misc/ |
D | HISTORY | 14305 PyNumber_Coerce, added PyMapping_DelItem. Also fixed a bug in
|
/external/python/cpython3/Misc/ |
D | HISTORY | 31684 PyNumber_Coerce, added PyMapping_DelItem. Also fixed a bug in
|