|
7 | 7 | extern "C" { |
8 | 8 | #endif |
9 | 9 |
|
| 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. |
| 13 | + * They reference a code object in their func_code attribute, which is a |
| 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 | + |
10 | 21 | typedef struct { |
11 | 22 | PyObject_HEAD |
12 | | - PyObject *func_code; |
13 | | - PyObject *func_globals; |
14 | | - PyObject *func_defaults; |
15 | | - PyObject *func_closure; |
16 | | - PyObject *func_doc; |
17 | | - PyObject *func_name; |
18 | | - PyObject *func_dict; |
19 | | - PyObject *func_weakreflist; |
20 | | - PyObject *func_module; |
| 23 | + PyObject *func_code; /* A code object */ |
| 24 | + PyObject *func_globals; /* A dictionary (other mappings won't do) */ |
| 25 | + PyObject *func_defaults; /* NULL or a tuple */ |
| 26 | + PyObject *func_closure; /* NULL or a tuple of cell objects */ |
| 27 | + PyObject *func_doc; /* The __doc__ attribute, can be anything */ |
| 28 | + PyObject *func_name; /* The __name__ attribute, a string object */ |
| 29 | + PyObject *func_dict; /* The __dict__ attribute, a dict or NULL */ |
| 30 | + PyObject *func_weakreflist; /* List of weak references */ |
| 31 | + PyObject *func_module; /* The __module__ attribute, can be anything */ |
| 32 | + |
| 33 | + /* Invariant: |
| 34 | + * func_closure contains the bindings for func_code->co_freevars, so |
| 35 | + * PyTuple_Size(func_closure) == PyCode_GetNumFree(func_code) |
| 36 | + * (func_closure may be NULL if PyCode_GetNumFree(func_code) == 0). |
| 37 | + */ |
21 | 38 | } PyFunctionObject; |
22 | 39 |
|
23 | 40 | PyAPI_DATA(PyTypeObject) PyFunction_Type; |
|
0 commit comments