File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -428,7 +428,7 @@ To retrieve the state from a given module, use the following functions:
428428
429429.. c :function :: int PyModule_GetStateSize (PyObject *module, Py_ssize_t *result)
430430
431- Set *\* result * to the size of the state for the module *module *, as specified
431+ Set *\* result * to the size of *module *'s state , as specified
432432 using :c:macro: `Py_mod_state_size ` (or :c:member: `PyModuleDef.m_size `),
433433 and return 0.
434434
@@ -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 token for the module *module* 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, *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.
You can’t perform that action at this time.
0 commit comments