summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-07 11:51:27 (GMT)
committerGuido van Rossum <guido@python.org>1995-01-07 11:51:27 (GMT)
commit5e56997969435c98a79dc12a6d0c12c2b487f834 (patch)
treebbffd6b60507d7b903bad2e47648b209204bfefe /Include
parentf9888eb2fb49ab41eb5b7afe3c4386355773843e (diff)
downloadcpython-5e56997969435c98a79dc12a6d0c12c2b487f834.zip
cpython-5e56997969435c98a79dc12a6d0c12c2b487f834.tar.gz
cpython-5e56997969435c98a79dc12a6d0c12c2b487f834.tar.bz2
initmodule2 -> initmodule3 (with doc string)
Diffstat (limited to 'Include')
-rw-r--r--Include/modsupport.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Include/modsupport.h b/Include/modsupport.h
index 9fe8763..fb196df 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, "")