Home
last modified time | relevance | path

Searched refs:METH_COEXIST (Results 1 – 16 of 16) sorted by relevance

/external/python/cpython2/Include/
Dmethodobject.h71 #define METH_COEXIST 0x0040 macro
/external/python/cpython3/Include/
Dmethodobject.h74 #define METH_COEXIST 0x0040 macro
/external/python/cpython3/Objects/clinic/
Ddictobject.c.h46 {"__contains__", (PyCFunction)dict___contains__, METH_O|METH_COEXIST, dict___contains____doc__},
/external/python/cpython2/Objects/
Dmethodobject.c78 switch (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST)) { in PyCFunction_Call()
Dsetobject.c2040 {"__contains__",(PyCFunction)set_direct_contains, METH_O | METH_COEXIST,
2174 {"__contains__",(PyCFunction)set_direct_contains, METH_O | METH_COEXIST,
Ddictobject.c2317 {"__contains__",(PyCFunction)dict_contains, METH_O | METH_COEXIST,
2319 {"__getitem__", (PyCFunction)dict_subscript, METH_O | METH_COEXIST,
Dlistobject.c2511 {"__getitem__", (PyCFunction)list_subscript, METH_O|METH_COEXIST, getitem_doc},
Dtypeobject.c3735 !(meth->ml_flags & METH_COEXIST))
/external/python/cpython2/Doc/c-api/
Dstructures.rst243 .. data:: METH_COEXIST
246 *METH_COEXIST*, the default is to skip repeated definitions. Since slot
/external/python/cpython3/Doc/c-api/
Dstructures.rst342 .. data:: METH_COEXIST
345 *METH_COEXIST*, the default is to skip repeated definitions. Since slot
/external/python/cpython3/Objects/
Dsetobject.c2009 {"__contains__",(PyCFunction)set_direct_contains, METH_O | METH_COEXIST,
2140 {"__contains__",(PyCFunction)set_direct_contains, METH_O | METH_COEXIST,
Dlistobject.c2767 {"__getitem__", (PyCFunction)list_subscript, METH_O|METH_COEXIST, "x.__getitem__(y) <==> x[y]"},
Ddictobject.c3256 {"__getitem__", (PyCFunction)(void(*)(void))dict_subscript, METH_O | METH_COEXIST,
Dtypeobject.c5016 if (!(meth->ml_flags & METH_COEXIST)) { in add_methods()
/external/python/cpython2/Misc/
DHISTORY3613 - Created a new method flag, METH_COEXIST, which causes a method to be loaded
/external/python/cpython3/Misc/
DHISTORY20997 - Created a new method flag, METH_COEXIST, which causes a method to be loaded