| Guido van Rossum | 85a5fbb | 1990-10-14 12:07:46 +0000 | [diff] [blame] | 1 | /* Function object interface */ |
| 2 | |||||
| 3 | extern typeobject Functype; | ||||
| 4 | |||||
| 5 | #define is_funcobject(op) ((op)->ob_type == &Functype) | ||||
| 6 | |||||
| 7 | extern object *newfuncobject PROTO((node *, object *)); | ||||
| 8 | extern node *getfuncnode PROTO((object *)); | ||||
| 9 | extern object *getfuncglobals PROTO((object *)); | ||||