0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Include/funcobject.h

10 lines
271 B
C
Raw Normal View History

1990-10-14 13:07:46 +01:00
/* Function object interface */
extern typeobject Functype;
#define is_funcobject(op) ((op)->ob_type == &Functype)
1990-11-18 18:44:34 +01:00
extern object *newfuncobject PROTO((object *, object *));
extern object *getfunccode PROTO((object *));
1990-10-14 13:07:46 +01:00
extern object *getfuncglobals PROTO((object *));