spammify.c: Replace spam_doc with NULL
authorW. Trevor King <wking@tremily.us>
Wed, 17 Apr 2013 15:42:54 +0000 (11:42 -0400)
committerW. Trevor King <wking@tremily.us>
Wed, 17 Apr 2013 15:42:54 +0000 (11:42 -0400)
We're not interested in setting a module docstring here.

spammify.c

index d586aac755dd7259fe180681a56bff74cd0f3136..31d7754da25e2d27a24978bb71e8ee0c0a2dc731 100644 (file)
@@ -22,7 +22,7 @@ static PyMethodDef SpamMethods[] = {
 static struct PyModuleDef spammodule = {
        PyModuleDef_HEAD_INIT,
        "spam",   /* name of module */
 static struct PyModuleDef spammodule = {
        PyModuleDef_HEAD_INIT,
        "spam",   /* name of module */
-       spam_doc, /* module documentation, may be NULL */
+       NULL,     /* module documentation, may be NULL */
        0,        /* size of per-interpreter state of the module */
        SpamMethods
 };
        0,        /* size of per-interpreter state of the module */
        SpamMethods
 };