]> granicus.if.org Git - python/commitdiff
Fix the indentation in Extending Python code example (GH-3244)
authorSergey Fedoseev <fedoseev.sergey@gmail.com>
Wed, 30 Aug 2017 14:50:40 +0000 (19:50 +0500)
committerMariatta <Mariatta@users.noreply.github.com>
Wed, 30 Aug 2017 14:50:40 +0000 (07:50 -0700)
Code was indented with three spaces.
Fixed using four spaces.

Doc/extending/extending.rst

index 2dc20fed131d07b5128a144bff6148ba65228ff7..7c273533aba5b53401d7b9fb24399e5444634abb 100644 (file)
@@ -333,12 +333,12 @@ function.
 The method table must be referenced in the module definition structure::
 
    static struct PyModuleDef spammodule = {
-      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
+       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
    };
 
 This structure, in turn, must be passed to the interpreter in the module's