mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Initial revision
This commit is contained in:
parent
c636014c43
commit
85a5fbbdfe
78 changed files with 13589 additions and 0 deletions
9
Include/moduleobject.h
Normal file
9
Include/moduleobject.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
/* 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 int setmoduledict PROTO((object *, object *));
|
Loading…
Add table
Add a link
Reference in a new issue