merge 3.2

This commit is contained in:
Eli Bendersky 2012-08-15 14:51:08 +03:00
commit bdbc0b08d0
1 changed files with 10 additions and 5 deletions

View File

@ -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);
}