From 88f0301c0d1320598a58fd3974a3a4e6856fe507 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 17 Apr 2013 11:42:54 -0400 Subject: [PATCH] spammify.c: Replace spam_doc with NULL We're not interested in setting a module docstring here. --- spammify.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spammify.c b/spammify.c index d586aac..31d7754 100644 --- a/spammify.c +++ b/spammify.c @@ -22,7 +22,7 @@ static PyMethodDef SpamMethods[] = { 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 }; -- 2.26.2