From: W. Trevor King Date: Wed, 17 Apr 2013 15:42:54 +0000 (-0400) Subject: spammify.c: Replace spam_doc with NULL X-Git-Url: http://git.tremily.us/?p=cpython-extension.git;a=commitdiff_plain;h=88f0301c0d1320598a58fd3974a3a4e6856fe507 spammify.c: Replace spam_doc with NULL We're not interested in setting a module docstring here. --- 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 };