From: Guido van Rossum Date: Fri, 26 Oct 1990 14:59:11 +0000 (+0000) Subject: Added prototype for reload_module. X-Git-Tag: v0.9.8~1142 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ed97f6aa041b576a9b05aefa3e5ff9de6cdb8d98;p=thirdparty%2FPython%2Fcpython.git Added prototype for reload_module. --- diff --git a/Include/import.h b/Include/import.h index 298a72b08963..cdeb3d1f4903 100644 --- a/Include/import.h +++ b/Include/import.h @@ -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));