#6732: fix return value of module init function in example.

This commit is contained in:
Georg Brandl 2009-09-01 08:03:26 +00:00
parent 11b6a64ea9
commit 2c52e2fa85
1 changed files with 1 additions and 0 deletions

View File

@ -95,4 +95,5 @@ PyInit_shoddy(void)
Py_INCREF(&ShoddyType);
PyModule_AddObject(m, "Shoddy", (PyObject *) &ShoddyType);
return m;
}