Home
last modified time | relevance | path

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

/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dabstract.h91 #define PyObject_DelAttrString(O,A) PyObject_SetAttrString((O),(A), NULL) macro
/aosp_15_r20/external/python/cpython3/Include/
Dabstract.h91 #define PyObject_DelAttrString(O,A) PyObject_SetAttrString((O),(A), NULL) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dabstract.h91 #define PyObject_DelAttrString(O,A) PyObject_SetAttrString((O),(A), NULL) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dabstract.h91 #define PyObject_DelAttrString(O,A) PyObject_SetAttrString((O),(A), NULL) macro
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dabstract.h91 #define PyObject_DelAttrString(O,A) PyObject_SetAttrString((O),(A), NULL) macro
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dobject.rst97 deprecated in favour of using :c:func:`PyObject_DelAttrString`.
118 .. c:function:: int PyObject_DelAttrString(PyObject *o, const char *attr_name)
/aosp_15_r20/external/python/cpython2/Include/
Dabstract.h218 #define PyObject_DelAttrString(O,A) PyObject_SetAttrString((O),(A),NULL) macro
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dobject.rst74 deprecated in favour of using :c:func:`PyObject_DelAttrString`.
95 .. c:function:: int PyObject_DelAttrString(PyObject *o, const char *attr_name)
/aosp_15_r20/external/python/cpython2/Doc/data/
Drefcounts.dat955 PyObject_DelAttrString:int:::
956 PyObject_DelAttrString:PyObject*:o:0:
957 PyObject_DelAttrString:char*:attr_name::
/aosp_15_r20/external/python/cpython3/Doc/data/
Drefcounts.dat1631 PyObject_DelAttrString:int:::
1632 PyObject_DelAttrString:PyObject*:o:0:
1633 PyObject_DelAttrString:const char*:attr_name::
/aosp_15_r20/external/python/cpython2/Modules/
Dselectmodule.c1872 if (PyObject_DelAttrString(m, "poll") == -1) {
Dposixmodule.c9553 if (PyObject_DelAttrString(m, "fstatvfs") == -1) { in INITFUNC()
9561 if (PyObject_DelAttrString(m, "statvfs") == -1) { in INITFUNC()
9569 if (PyObject_DelAttrString(m, "lchown") == -1) { in INITFUNC()
/aosp_15_r20/external/python/cpython3/Modules/
Dselectmodule.c2455 if (PyObject_DelAttrString(m, "poll") == -1) {