@@ -426,10 +426,10 @@ To retrieve the state from a given module, use the following functions:
426426 module state.
427427
428428
429- .. c :function :: int PyModule_GetStateSize (PyObject *, Py_ssize_t *result)
429+ .. c :function :: int PyModule_GetStateSize (PyObject *module , Py_ssize_t *result)
430430
431- Set *\* result * to the size of the module's state, as specified using
432- :c:macro: `Py_mod_state_size ` (or :c:member: `PyModuleDef.m_size `),
431+ Set *\* result * to the size of * module * 's state, as specified
432+ using :c:macro: `Py_mod_state_size ` (or :c:member: `PyModuleDef.m_size `),
433433 and return 0.
434434
435435 On error, set *\*result* to -1, and return -1 with an exception set.
@@ -597,7 +597,7 @@ A module's token -- and the *your_token* value to use in the above code -- is:
597597
598598.. c:function:: int PyModule_GetToken(PyObject *module, void* * result)
599599
600- Set *\*result* to the module's token and return 0.
600+ Set *\*result* to the module token for *module* and return 0.
601601
602602 On error, set *\*result* to NULL, and return -1 with an exception set.
603603
@@ -645,7 +645,7 @@ rather than from an extension's :ref:`export hook <extension-export-hook>`.
645645
646646.. c:function:: int PyModule_Exec(PyObject *module)
647647
648- Execute the :c:data: `Py_mod_exec ` slot(s) of the given *module*.
648+ Execute the :c:data: `Py_mod_exec ` slot(s) of *module*.
649649
650650 On success, return 0.
651651 On error, return -1 with an exception set.
0 commit comments