From: Guido van Rossum Date: Mon, 9 Jan 1995 17:49:26 +0000 (+0000) Subject: initmodule3 -> initmodule3 X-Git-Tag: v1.2b1~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=37431fbbd03c4130b567f1cca8cfa4134915836a;p=thirdparty%2FPython%2Fcpython.git initmodule3 -> initmodule3 --- diff --git a/Modules/newmodule.c b/Modules/newmodule.c index f237a3a14d13..4c8b16d19d3f 100644 --- a/Modules/newmodule.c +++ b/Modules/newmodule.c @@ -142,5 +142,6 @@ You need to know a great deal about the interpreter to use this!"; void initnew() { - initmodule3("new", new_methods, new_doc, (object *)NULL); + initmodule4("new", new_methods, new_doc, (object *)NULL, + PYTHON_API_VERSION); }