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 2fc1511 commit 24c6eaaCopy full SHA for 24c6eaa
Doc/extending/first-extension-module.rst
@@ -327,8 +327,9 @@ Add such a function above the slots array::
327
Py_RETURN_NONE;
328
}
329
330
-For now, we'll ignore the arguments, and use the :c:macro:`Py_RETURN_NONE`
331
-macro to properly ``return`` a Python :py:data:`None` object.
+For now, we ignore the arguments, and use the :c:macro:`Py_RETURN_NONE`
+macro, which expands to a ``return`` statement that properly returns
332
+a Python :py:data:`None` object.
333
334
Recompile your extension to make sure you don't have syntax errors.
335
We haven't yet added ``spam_system`` to the module, so you might get a
0 commit comments