Port to Python 2.5. Drop .DEF file. Change output file names to .pyd.

This commit is contained in:
Martin v. Löwis 2006-04-22 15:19:54 +00:00
parent 3c134a2046
commit 449be38305
3 changed files with 7 additions and 12 deletions

View file

@ -13,7 +13,7 @@ static PyMethodDef example_methods[] = {
{NULL, NULL}
};
void
PyMODINIT_FUNC
initexample(void)
{
Py_InitModule("example", example_methods);