mirror of
https://github.com/python/cpython.git
synced 2025-11-17 09:30:10 +00:00
9 lines
264 B
C
9 lines
264 B
C
/* Module object interface */
|
|
|
|
extern typeobject Moduletype;
|
|
|
|
#define is_moduleobject(op) ((op)->ob_type == &Moduletype)
|
|
|
|
extern object *newmoduleobject PROTO((char *));
|
|
extern object *getmoduledict PROTO((object *));
|
|
extern char *getmodulename PROTO((object *));
|