mirror of
https://github.com/python/cpython.git
synced 2024-11-28 08:20:55 +01:00
8 lines
272 B
C
8 lines
272 B
C
/* Module definition and import interface */
|
|
|
|
void init_modules PROTO(());
|
|
void close_modules PROTO(());
|
|
object *new_module PROTO((char *name));
|
|
void define_module PROTO((struct _context *ctx, char *name));
|
|
object *import_module PROTO((struct _context *ctx, char *name));
|