mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
added findmethodinchain and methodchain data types
This commit is contained in:
parent
5279ec683a
commit
6978503235
3 changed files with 60 additions and 23 deletions
|
|
@ -57,6 +57,14 @@ extern PyObject *PyCFunction_New
|
|||
/* Flag passed to newmethodobject */
|
||||
#define METH_VARARGS 0x0001
|
||||
|
||||
typedef struct PyMethodChain {
|
||||
PyMethodDef *methods; /* Methods of this type */
|
||||
struct PyMethodChain *link; /* NULL or base type */
|
||||
} PyMethodChain;
|
||||
|
||||
extern PyObject *Py_FindMethodInChain
|
||||
Py_PROTO((PyMethodChain *, PyObject *, char *));
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue