From 1a2b24f02dfd4eb3383f6ae2b59e5a4eb66fd5bb Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Thu, 7 Jul 2016 17:35:15 +0300 Subject: Issue #27332: Fixed the type of the first argument of module-level functions generated by Argument Clinic. Patch by Petr Viktorin. --- Modules/_gdbmmodule.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Modules/_gdbmmodule.c') diff --git a/Modules/_gdbmmodule.c b/Modules/_gdbmmodule.c index f070a14007..b840bf5005 100644 --- a/Modules/_gdbmmodule.c +++ b/Modules/_gdbmmodule.c @@ -562,9 +562,8 @@ when the database has to be created. It defaults to octal 0o666. [clinic start generated code]*/ static PyObject * -dbmopen_impl(PyModuleDef *module, const char *name, const char *flags, - int mode) -/*[clinic end generated code: output=365b31415c03ccd4 input=55563cd60e51984a]*/ +dbmopen_impl(PyObject *module, const char *name, const char *flags, int mode) +/*[clinic end generated code: output=31aa1bafdf5da688 input=55563cd60e51984a]*/ { int iflags; -- cgit v1.2.1