]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Added prototype for reload_module.
authorGuido van Rossum <guido@python.org>
Fri, 26 Oct 1990 14:59:11 +0000 (14:59 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 26 Oct 1990 14:59:11 +0000 (14:59 +0000)
Include/import.h

index 298a72b08963014e3e746da8a06b935ed1fb0bc7..cdeb3d1f4903f940e40a8fff2a35708afef708cb 100644 (file)
@@ -1,7 +1,5 @@
 /* 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));
+object *reload_module PROTO((struct _context *ctx, object *m));