Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 095a421 commit b5db7bbCopy full SHA for b5db7bb
1 file changed
Doc/extending/extending.rst
@@ -333,12 +333,12 @@ function.
333
The method table must be referenced in the module definition structure::
334
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
+ PyModuleDef_HEAD_INIT,
+ "spam", /* name of module */
+ spam_doc, /* module documentation, may be NULL */
+ -1, /* size of per-interpreter state of the module,
+ or -1 if the module keeps state in global variables. */
+ SpamMethods
342
};
343
344
This structure, in turn, must be passed to the interpreter in the module's
0 commit comments