Home
last modified time | relevance | path

Searched refs:ml_meth (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Tools/framer/framer/
Dfunction.py44 ml_meth = None variable in _ArgumentList
64 self.ml_meth = METH_NOARGS
74 self.ml_meth = METH_O
83 self.ml_meth = METH_VARARGS
150 if self.args.ml_meth == METH_VARARGS:
164 v["MethType"] = self.args.ml_meth
/external/python/cpython2/Objects/
Dmethodobject.c47 return ((PyCFunctionObject *)op) -> m_ml -> ml_meth; in PyCFunction_GetFunction()
218 if (a->m_ml->ml_meth == b->m_ml->ml_meth) in meth_compare()
251 eq = a->m_ml->ml_meth == b->m_ml->ml_meth; in meth_richcompare()
271 y = _Py_HashPointer((void*)(a->m_ml->ml_meth)); in meth_hash()
/external/python/cpython2/Include/
Dmethodobject.h30 (((PyCFunctionObject *)func) -> m_ml -> ml_meth)
39 PyCFunction ml_meth; /* The C function that implements it */ member
/external/python/cpython2/Doc/c-api/
Dstructures.rst142 | :attr:`ml_meth` | PyCFunction | pointer to the C |
152 The :attr:`ml_meth` is a C function pointer. The functions may be of different
/external/python/cpython2/PC/bdist_wininst/
Dinstall.c342 PyCFunction ml_meth; member
/external/python/cpython2/Modules/
D_elementtree.c3086 if (mp->ml_meth == (PyCFunction) element_reduce) {
/external/python/cpython2/Doc/extending/
Dnewtypes.rst1174 PyCFunction ml_meth; /* implementation function */