mirror of
https://github.com/python/cpython.git
synced 2025-07-23 11:15:24 +00:00
5 lines
215 B
C
5 lines
215 B
C
/* Module definition and import interface */
|
|
|
|
object *new_module PROTO((char *name));
|
|
object *import_module PROTO((struct _context *ctx, char *name));
|
|
object *reload_module PROTO((struct _context *ctx, object *m));
|