projects
/
cpython-extension.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7e4a199
)
spammify.c: Replace spam_doc with NULL
author
W. Trevor King
<wking@tremily.us>
Wed, 17 Apr 2013 15:42:54 +0000
(11:42 -0400)
committer
W. 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
patch
|
blob
|
history
diff --git
a/spammify.c
b/spammify.c
index d586aac755dd7259fe180681a56bff74cd0f3136..31d7754da25e2d27a24978bb71e8ee0c0a2dc731 100644
(file)
--- 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
};