commit | 2c52e2fa854a5fdf8f987e89271b54128f515b1f | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Tue Sep 01 08:03:26 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Tue Sep 01 08:03:26 2009 +0000 |
tree | 0180b5141ae66e028f4b7866cbc826d989932826 | |
parent | 11b6a64ea92e93710ca55c560059edd8ea5292b2 [diff] [blame] |
#6732: fix return value of module init function in example.
diff --git a/Doc/includes/shoddy.c b/Doc/includes/shoddy.c index bb7f05b..07a2721 100644 --- a/Doc/includes/shoddy.c +++ b/Doc/includes/shoddy.c
@@ -95,4 +95,5 @@ Py_INCREF(&ShoddyType); PyModule_AddObject(m, "Shoddy", (PyObject *) &ShoddyType); + return m; }