cpython/Include/funcobject.h
1990-11-18 17:44:34 +00:00

9 lines
271 B
C

/* Function object interface */
extern typeobject Functype;
#define is_funcobject(op) ((op)->ob_type == &Functype)
extern object *newfuncobject PROTO((object *, object *));
extern object *getfunccode PROTO((object *));
extern object *getfuncglobals PROTO((object *));