From: Guido van Rossum Date: Sat, 7 Jan 1995 11:51:27 +0000 (+0000) Subject: initmodule2 -> initmodule3 (with doc string) X-Git-Tag: v1.2b1~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5e56997969435c98a79dc12a6d0c12c2b487f834;p=thirdparty%2FPython%2Fcpython.git initmodule2 -> initmodule3 (with doc string) --- diff --git a/Include/modsupport.h b/Include/modsupport.h index 9fe8763e5bd6..fb196df62dce 100644 --- a/Include/modsupport.h +++ b/Include/modsupport.h @@ -52,7 +52,8 @@ extern int vgetargs PROTO((object *, char *, va_list)); extern object *vmkvalue PROTO((char *, va_list)); extern object *initmodule PROTO((char *, struct methodlist *)); -extern object *initmodule2 PROTO((char *, struct methodlist *, object *)); +extern object *initmodule3 PROTO((char *, struct methodlist *, + char *, object *)); /* The following are obsolete -- use getargs directly! */ #define getnoarg(v) getargs(v, "")