Issue 6732: PyInit_shoddy() in shoddy.c does not return anything on success (original) (raw)
Section 2.1.4, "Subclassing other types", of "Extending and Embedding the Python Interpreter" (Release: 3.1, Date: June 26, 2009) has a complete list of shoddy.c, in which PyInit_shoddy() does not have a return statement at the end to return a pointer to the created "shoddy" module on success. Simply adding the missing "return m;" statement would be fine.