mirror of
https://github.com/python/cpython.git
synced 2024-11-24 17:47:13 +01:00
10 lines
267 B
C
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 *));
|