mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
9 lines
271 B
C
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 *));
|