File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -333,12 +333,12 @@ function.
333
333
The method table must be referenced in the module definition structure::
334
334
335
335
static struct PyModuleDef spammodule = {
336
- PyModuleDef_HEAD_INIT,
337
- "spam", /* name of module */
338
- spam_doc, /* module documentation, may be NULL */
339
- -1, /* size of per-interpreter state of the module,
340
- or -1 if the module keeps state in global variables. */
341
- SpamMethods
336
+ PyModuleDef_HEAD_INIT,
337
+ "spam", /* name of module */
338
+ spam_doc, /* module documentation, may be NULL */
339
+ -1, /* size of per-interpreter state of the module,
340
+ or -1 if the module keeps state in global variables. */
341
+ SpamMethods
342
342
};
343
343
344
344
This structure, in turn, must be passed to the interpreter in the module's
You can’t perform that action at this time.
0 commit comments