| Guido van Rossum | f70e43a | 1991-02-19 12:39:46 +0000 | [diff] [blame] | 1 |  | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 2 | /* Function object interface */ | 
| Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 3 | #ifndef Py_LIMITED_API | 
| Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 4 | #ifndef Py_FUNCOBJECT_H | 
 | 5 | #define Py_FUNCOBJECT_H | 
 | 6 | #ifdef __cplusplus | 
 | 7 | extern "C" { | 
 | 8 | #endif | 
 | 9 |  | 
| Armin Rigo | 89a3946 | 2004-10-28 16:32:00 +0000 | [diff] [blame] | 10 | /* Function objects and code objects should not be confused with each other: | 
 | 11 |  * | 
 | 12 |  * Function objects are created by the execution of the 'def' statement. | 
| Neal Norwitz | 8ced961 | 2007-08-25 17:01:41 +0000 | [diff] [blame] | 13 |  * They reference a code object in their __code__ attribute, which is a | 
| Armin Rigo | 89a3946 | 2004-10-28 16:32:00 +0000 | [diff] [blame] | 14 |  * purely syntactic object, i.e. nothing more than a compiled version of some | 
 | 15 |  * source code lines.  There is one code object per source code "fragment", | 
 | 16 |  * but each code object can be referenced by zero or many function objects | 
 | 17 |  * depending only on how many times the 'def' statement in the source was | 
 | 18 |  * executed so far. | 
 | 19 |  */ | 
 | 20 |  | 
| Guido van Rossum | 2583165 | 1993-05-19 14:50:45 +0000 | [diff] [blame] | 21 | typedef struct { | 
| Fred Drake | ea9cb5a | 2000-07-09 00:20:36 +0000 | [diff] [blame] | 22 |     PyObject_HEAD | 
| Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 23 |     PyObject *func_code;        /* A code object, the __code__ attribute */ | 
 | 24 |     PyObject *func_globals;     /* A dictionary (other mappings won't do) */ | 
 | 25 |     PyObject *func_defaults;    /* NULL or a tuple */ | 
 | 26 |     PyObject *func_kwdefaults;  /* NULL or a dict */ | 
 | 27 |     PyObject *func_closure;     /* NULL or a tuple of cell objects */ | 
 | 28 |     PyObject *func_doc;         /* The __doc__ attribute, can be anything */ | 
 | 29 |     PyObject *func_name;        /* The __name__ attribute, a string object */ | 
 | 30 |     PyObject *func_dict;        /* The __dict__ attribute, a dict or NULL */ | 
 | 31 |     PyObject *func_weakreflist; /* List of weak references */ | 
 | 32 |     PyObject *func_module;      /* The __module__ attribute, can be anything */ | 
 | 33 |     PyObject *func_annotations; /* Annotations, a dict or NULL */ | 
| Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 34 |     PyObject *func_qualname;    /* The qualified name */ | 
| Jeroen Demeyer | aacc77f | 2019-05-29 20:31:52 +0200 | [diff] [blame] | 35 |     vectorcallfunc vectorcall; | 
| Armin Rigo | 89a3946 | 2004-10-28 16:32:00 +0000 | [diff] [blame] | 36 |  | 
 | 37 |     /* Invariant: | 
 | 38 |      *     func_closure contains the bindings for func_code->co_freevars, so | 
 | 39 |      *     PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code) | 
 | 40 |      *     (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0). | 
 | 41 |      */ | 
| Guido van Rossum | caa6380 | 1995-01-12 11:45:45 +0000 | [diff] [blame] | 42 | } PyFunctionObject; | 
| Guido van Rossum | 2583165 | 1993-05-19 14:50:45 +0000 | [diff] [blame] | 43 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 44 | PyAPI_DATA(PyTypeObject) PyFunction_Type; | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 45 |  | 
| Christian Heimes | 90aa764 | 2007-12-19 02:45:37 +0000 | [diff] [blame] | 46 | #define PyFunction_Check(op) (Py_TYPE(op) == &PyFunction_Type) | 
| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 47 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 48 | PyAPI_FUNC(PyObject *) PyFunction_New(PyObject *, PyObject *); | 
| Antoine Pitrou | 86a36b5 | 2011-11-25 18:56:07 +0100 | [diff] [blame] | 49 | PyAPI_FUNC(PyObject *) PyFunction_NewWithQualName(PyObject *, PyObject *, PyObject *); | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 50 | PyAPI_FUNC(PyObject *) PyFunction_GetCode(PyObject *); | 
 | 51 | PyAPI_FUNC(PyObject *) PyFunction_GetGlobals(PyObject *); | 
| Jeremy Hylton | 4f0dcc9 | 2003-01-31 18:33:18 +0000 | [diff] [blame] | 52 | PyAPI_FUNC(PyObject *) PyFunction_GetModule(PyObject *); | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 53 | PyAPI_FUNC(PyObject *) PyFunction_GetDefaults(PyObject *); | 
 | 54 | PyAPI_FUNC(int) PyFunction_SetDefaults(PyObject *, PyObject *); | 
| Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 55 | PyAPI_FUNC(PyObject *) PyFunction_GetKwDefaults(PyObject *); | 
 | 56 | PyAPI_FUNC(int) PyFunction_SetKwDefaults(PyObject *, PyObject *); | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 57 | PyAPI_FUNC(PyObject *) PyFunction_GetClosure(PyObject *); | 
 | 58 | PyAPI_FUNC(int) PyFunction_SetClosure(PyObject *, PyObject *); | 
| Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 59 | PyAPI_FUNC(PyObject *) PyFunction_GetAnnotations(PyObject *); | 
 | 60 | PyAPI_FUNC(int) PyFunction_SetAnnotations(PyObject *, PyObject *); | 
| Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 61 |  | 
| Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame] | 62 | #ifndef Py_LIMITED_API | 
| Jeroen Demeyer | 37788bc | 2019-05-30 15:11:22 +0200 | [diff] [blame] | 63 | PyAPI_FUNC(PyObject *) _PyFunction_Vectorcall( | 
| Victor Stinner | d873572 | 2016-09-09 12:36:44 -0700 | [diff] [blame] | 64 |     PyObject *func, | 
| Serhiy Storchaka | a5552f0 | 2017-12-15 13:11:11 +0200 | [diff] [blame] | 65 |     PyObject *const *stack, | 
| Jeroen Demeyer | aacc77f | 2019-05-29 20:31:52 +0200 | [diff] [blame] | 66 |     size_t nargsf, | 
| Victor Stinner | d873572 | 2016-09-09 12:36:44 -0700 | [diff] [blame] | 67 |     PyObject *kwnames); | 
| Victor Stinner | 9be7e7b | 2016-08-19 16:11:43 +0200 | [diff] [blame] | 68 | #endif | 
 | 69 |  | 
| Guido van Rossum | ba0d061 | 1998-07-10 15:47:08 +0000 | [diff] [blame] | 70 | /* Macros for direct access to these values. Type checks are *not* | 
 | 71 |    done, so use with care. */ | 
 | 72 | #define PyFunction_GET_CODE(func) \ | 
 | 73 |         (((PyFunctionObject *)func) -> func_code) | 
 | 74 | #define PyFunction_GET_GLOBALS(func) \ | 
| Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 75 |         (((PyFunctionObject *)func) -> func_globals) | 
| Jeremy Hylton | 4f0dcc9 | 2003-01-31 18:33:18 +0000 | [diff] [blame] | 76 | #define PyFunction_GET_MODULE(func) \ | 
| Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 77 |         (((PyFunctionObject *)func) -> func_module) | 
| Guido van Rossum | ba0d061 | 1998-07-10 15:47:08 +0000 | [diff] [blame] | 78 | #define PyFunction_GET_DEFAULTS(func) \ | 
| Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 79 |         (((PyFunctionObject *)func) -> func_defaults) | 
| Guido van Rossum | 4f72a78 | 2006-10-27 23:31:49 +0000 | [diff] [blame] | 80 | #define PyFunction_GET_KW_DEFAULTS(func) \ | 
| Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 81 |         (((PyFunctionObject *)func) -> func_kwdefaults) | 
| Jeremy Hylton | 64949cb | 2001-01-25 20:06:59 +0000 | [diff] [blame] | 82 | #define PyFunction_GET_CLOSURE(func) \ | 
| Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 83 |         (((PyFunctionObject *)func) -> func_closure) | 
| Neal Norwitz | c150536 | 2006-12-28 06:47:50 +0000 | [diff] [blame] | 84 | #define PyFunction_GET_ANNOTATIONS(func) \ | 
| Serhiy Storchaka | 598ceae | 2017-11-28 17:56:10 +0200 | [diff] [blame] | 85 |         (((PyFunctionObject *)func) -> func_annotations) | 
| Guido van Rossum | ba0d061 | 1998-07-10 15:47:08 +0000 | [diff] [blame] | 86 |  | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 87 | /* The classmethod and staticmethod types lives here, too */ | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 88 | PyAPI_DATA(PyTypeObject) PyClassMethod_Type; | 
 | 89 | PyAPI_DATA(PyTypeObject) PyStaticMethod_Type; | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 90 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 91 | PyAPI_FUNC(PyObject *) PyClassMethod_New(PyObject *); | 
 | 92 | PyAPI_FUNC(PyObject *) PyStaticMethod_New(PyObject *); | 
| Tim Peters | 6d6c1a3 | 2001-08-02 04:15:00 +0000 | [diff] [blame] | 93 |  | 
| Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 94 | #ifdef __cplusplus | 
 | 95 | } | 
 | 96 | #endif | 
 | 97 | #endif /* !Py_FUNCOBJECT_H */ | 
| Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 98 | #endif /* Py_LIMITED_API */ |