Commit f31b1ee7 authored by Eli Bendersky's avatar Eli Bendersky

merge heads in 3.2 branch

parents a63ec643 2cb45242
......@@ -735,13 +735,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