Commit bdbc0b08 authored by Eli Bendersky's avatar Eli Bendersky

merge 3.2

parents aae61b8c f748a377
......@@ -732,13 +732,18 @@ Philbrick (philbrick@hks.com)::
{NULL, NULL, 0, NULL} /* sentinel */
};
::
static struct PyModuleDef keywdargmodule = {
PyModuleDef_HEAD_INIT,
"keywdarg",
NULL,
-1,
keywdarg_methods
};
void
initkeywdarg(void)
PyMODINIT_FUNC
PyInit_keywdarg(void)
{
/* Create the module and add the functions */
Py_InitModule("keywdarg", keywdarg_methods);
return PyModule_Create(&keywdargmodule);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment