diff options
author | Guido van Rossum <guido@python.org> | 1995-01-09 17:49:26 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-09 17:49:26 (GMT) |
commit | 37431fbbd03c4130b567f1cca8cfa4134915836a (patch) | |
tree | e1f93b34317e278368e1587ce85547f74f2e78b8 /Modules/newmodule.c | |
parent | 970a0a20b881962a950946cbc43e1941827a1e87 (diff) | |
download | cpython-37431fbbd03c4130b567f1cca8cfa4134915836a.zip cpython-37431fbbd03c4130b567f1cca8cfa4134915836a.tar.gz cpython-37431fbbd03c4130b567f1cca8cfa4134915836a.tar.bz2 |
initmodule3 -> initmodule3
Diffstat (limited to 'Modules/newmodule.c')
-rw-r--r-- | Modules/newmodule.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/newmodule.c b/Modules/newmodule.c index f237a3a..4c8b16d 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); } |