| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Method object interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  | #ifndef Py_METHODOBJECT_H
 | 
					
						
							|  |  |  | #define Py_METHODOBJECT_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-28 16:32:00 +00:00
										 |  |  | /* This is about the type 'builtin_function_or_method',
 | 
					
						
							|  |  |  |    not Python methods in user-defined classes.  See classobject.h | 
					
						
							|  |  |  |    for the latter. */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_DATA(PyTypeObject) PyCFunction_Type; | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-12 11:45:45 +00:00
										 |  |  | #define PyCFunction_Check(op) ((op)->ob_type == &PyCFunction_Type)
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-09 03:09:57 +00:00
										 |  |  | typedef PyObject *(*PyCFunction)(PyObject *, PyObject *); | 
					
						
							|  |  |  | typedef PyObject *(*PyCFunctionWithKeywords)(PyObject *, PyObject *, | 
					
						
							|  |  |  | 					     PyObject *); | 
					
						
							| 
									
										
										
										
											2001-08-12 21:52:24 +00:00
										 |  |  | typedef PyObject *(*PyNoArgsFunction)(PyObject *); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyCFunction) PyCFunction_GetFunction(PyObject *); | 
					
						
							|  |  |  | PyAPI_FUNC(PyObject *) PyCFunction_GetSelf(PyObject *); | 
					
						
							|  |  |  | PyAPI_FUNC(int) PyCFunction_GetFlags(PyObject *); | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-07-10 15:21:55 +00:00
										 |  |  | /* Macros for direct access to these values. Type checks are *not*
 | 
					
						
							|  |  |  |    done, so use with care. */ | 
					
						
							|  |  |  | #define PyCFunction_GET_FUNCTION(func) \
 | 
					
						
							|  |  |  |         (((PyCFunctionObject *)func) -> m_ml -> ml_meth) | 
					
						
							|  |  |  | #define PyCFunction_GET_SELF(func) \
 | 
					
						
							|  |  |  | 	(((PyCFunctionObject *)func) -> m_self) | 
					
						
							|  |  |  | #define PyCFunction_GET_FLAGS(func) \
 | 
					
						
							|  |  |  | 	(((PyCFunctionObject *)func) -> m_ml -> ml_flags) | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) PyCFunction_Call(PyObject *, PyObject *, PyObject *); | 
					
						
							| 
									
										
										
										
											1998-07-10 15:21:55 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-12 11:45:45 +00:00
										 |  |  | struct PyMethodDef { | 
					
						
							| 
									
										
										
										
											2004-10-28 16:32:00 +00:00
										 |  |  |     char	*ml_name;	/* The name of the built-in function/method */ | 
					
						
							|  |  |  |     PyCFunction  ml_meth;	/* The C function that implements it */ | 
					
						
							|  |  |  |     int		 ml_flags;	/* Combination of METH_xxx flags, which mostly
 | 
					
						
							|  |  |  | 				   describe the args expected by the C func */ | 
					
						
							|  |  |  |     char	*ml_doc;	/* The __doc__ attribute, or NULL */ | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											1995-01-12 11:45:45 +00:00
										 |  |  | typedef struct PyMethodDef PyMethodDef; | 
					
						
							| 
									
										
										
										
											1990-12-20 15:06:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) Py_FindMethod(PyMethodDef[], PyObject *, char *); | 
					
						
							| 
									
										
										
										
											1995-01-07 10:32:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-31 18:33:18 +00:00
										 |  |  | #define PyCFunction_New(ML, SELF) PyCFunction_NewEx((ML), (SELF), NULL)
 | 
					
						
							|  |  |  | PyAPI_FUNC(PyObject *) PyCFunction_NewEx(PyMethodDef *, PyObject *,  | 
					
						
							|  |  |  | 					 PyObject *); | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:06:22 +00:00
										 |  |  | /* Flag passed to newmethodobject */ | 
					
						
							| 
									
										
										
										
											2000-08-03 02:28:54 +00:00
										 |  |  | #define METH_OLDARGS  0x0000
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:06:22 +00:00
										 |  |  | #define METH_VARARGS  0x0001
 | 
					
						
							| 
									
										
										
										
											1995-07-26 17:58:29 +00:00
										 |  |  | #define METH_KEYWORDS 0x0002
 | 
					
						
							| 
									
										
										
										
											2002-03-28 05:33:33 +00:00
										 |  |  | /* METH_NOARGS and METH_O must not be combined with the flags above. */ | 
					
						
							| 
									
										
										
										
											2001-08-12 21:52:24 +00:00
										 |  |  | #define METH_NOARGS   0x0004
 | 
					
						
							|  |  |  | #define METH_O        0x0008
 | 
					
						
							| 
									
										
										
										
											1995-01-04 19:06:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-28 05:33:33 +00:00
										 |  |  | /* METH_CLASS and METH_STATIC are a little different; these control
 | 
					
						
							|  |  |  |    the construction of methods for a class.  These cannot be used for | 
					
						
							|  |  |  |    functions in modules. */ | 
					
						
							|  |  |  | #define METH_CLASS    0x0010
 | 
					
						
							|  |  |  | #define METH_STATIC   0x0020
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-13 11:26:12 +00:00
										 |  |  | /* METH_COEXIST allows a method to be entered eventhough a slot has
 | 
					
						
							|  |  |  |    already filled the entry.  When defined, the flag allows a separate | 
					
						
							|  |  |  |    method, "__contains__" for example, to coexist with a defined  | 
					
						
							|  |  |  |    slot like sq_contains. */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define METH_COEXIST   0x0040
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | typedef struct PyMethodChain { | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     PyMethodDef *methods;		/* Methods of this type */ | 
					
						
							|  |  |  |     struct PyMethodChain *link;	/* NULL or base type */ | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | } PyMethodChain; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-08-12 07:21:58 +00:00
										 |  |  | PyAPI_FUNC(PyObject *) Py_FindMethodInChain(PyMethodChain *, PyObject *, | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |                                                   char *); | 
					
						
							| 
									
										
										
										
											1995-01-26 22:58:48 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-07-10 15:21:55 +00:00
										 |  |  | typedef struct { | 
					
						
							| 
									
										
										
										
											2000-07-09 00:20:36 +00:00
										 |  |  |     PyObject_HEAD | 
					
						
							| 
									
										
										
										
											2004-10-28 16:32:00 +00:00
										 |  |  |     PyMethodDef *m_ml; /* Description of the C function to call */ | 
					
						
							|  |  |  |     PyObject    *m_self; /* Passed as 'self' arg to the C func, can be NULL */ | 
					
						
							|  |  |  |     PyObject    *m_module; /* The __module__ attribute, can be anything */ | 
					
						
							| 
									
										
										
										
											1998-07-10 15:21:55 +00:00
										 |  |  | } PyCFunctionObject; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_METHODOBJECT_H */
 |