0
0
mirror of https://github.com/python/cpython.git synced 2024-11-24 08:52:25 +01:00
cpython/Include/funcobject.h
1990-10-14 12:07:46 +00:00

10 lines
267 B
C

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