Home
last modified time | relevance | path

Searched refs:methodcaller_type (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
Doperator.c785 static PyTypeObject methodcaller_type; variable
800 mc = PyObject_GC_New(methodcallerobject, &methodcaller_type); in methodcaller_new()
864 static PyTypeObject methodcaller_type = { variable
931 if (PyType_Ready(&methodcaller_type) < 0) in initoperator()
933 Py_INCREF(&methodcaller_type); in initoperator()
934 PyModule_AddObject(m, "methodcaller", (PyObject *)&methodcaller_type); in initoperator()
/external/python/cpython3/Modules/
D_operator.c1462 static PyTypeObject methodcaller_type; variable
1485 mc = PyObject_GC_New(methodcallerobject, &methodcaller_type); in methodcaller_new()
1674 static PyTypeObject methodcaller_type = { variable
1753 if (PyType_Ready(&methodcaller_type) < 0) in PyInit__operator()
1755 Py_INCREF(&methodcaller_type); in PyInit__operator()
1756 PyModule_AddObject(m, "methodcaller", (PyObject *)&methodcaller_type); in PyInit__operator()