Searched refs:METH_COEXIST (Results 1 – 16 of 16) sorted by relevance
/external/python/cpython2/Include/ |
D | methodobject.h | 71 #define METH_COEXIST 0x0040 macro
|
/external/python/cpython3/Include/ |
D | methodobject.h | 74 #define METH_COEXIST 0x0040 macro
|
/external/python/cpython3/Objects/clinic/ |
D | dictobject.c.h | 46 {"__contains__", (PyCFunction)dict___contains__, METH_O|METH_COEXIST, dict___contains____doc__},
|
/external/python/cpython2/Objects/ |
D | methodobject.c | 78 switch (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST)) { in PyCFunction_Call()
|
D | setobject.c | 2040 {"__contains__",(PyCFunction)set_direct_contains, METH_O | METH_COEXIST, 2174 {"__contains__",(PyCFunction)set_direct_contains, METH_O | METH_COEXIST,
|
D | dictobject.c | 2317 {"__contains__",(PyCFunction)dict_contains, METH_O | METH_COEXIST, 2319 {"__getitem__", (PyCFunction)dict_subscript, METH_O | METH_COEXIST,
|
D | listobject.c | 2511 {"__getitem__", (PyCFunction)list_subscript, METH_O|METH_COEXIST, getitem_doc},
|
D | typeobject.c | 3735 !(meth->ml_flags & METH_COEXIST))
|
/external/python/cpython2/Doc/c-api/ |
D | structures.rst | 243 .. data:: METH_COEXIST 246 *METH_COEXIST*, the default is to skip repeated definitions. Since slot
|
/external/python/cpython3/Doc/c-api/ |
D | structures.rst | 342 .. data:: METH_COEXIST 345 *METH_COEXIST*, the default is to skip repeated definitions. Since slot
|
/external/python/cpython3/Objects/ |
D | setobject.c | 2009 {"__contains__",(PyCFunction)set_direct_contains, METH_O | METH_COEXIST, 2140 {"__contains__",(PyCFunction)set_direct_contains, METH_O | METH_COEXIST,
|
D | listobject.c | 2767 {"__getitem__", (PyCFunction)list_subscript, METH_O|METH_COEXIST, "x.__getitem__(y) <==> x[y]"},
|
D | dictobject.c | 3256 {"__getitem__", (PyCFunction)(void(*)(void))dict_subscript, METH_O | METH_COEXIST,
|
D | typeobject.c | 5016 if (!(meth->ml_flags & METH_COEXIST)) { in add_methods()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 3613 - Created a new method flag, METH_COEXIST, which causes a method to be loaded
|
/external/python/cpython3/Misc/ |
D | HISTORY | 20997 - Created a new method flag, METH_COEXIST, which causes a method to be loaded
|