@@ -164,7 +164,7 @@ or request "multi-phase initialization" by returning the definition struct itsel
164164
165165 This memory area is allocated based on *m_size * on module creation,
166166 and freed when the module object is deallocated, after the
167- :c:member: `m_free ` function has been called, if present.
167+ :c:member: `~PyModuleDef. m_free ` function has been called, if present.
168168
169169 Setting ``m_size `` to ``-1 `` means that the module does not support
170170 sub-interpreters, because it has global state.
@@ -202,7 +202,7 @@ or request "multi-phase initialization" by returning the definition struct itsel
202202 This function is not called if the module state was requested but is not
203203 allocated yet. This is the case immediately after the module is created
204204 and before the module is executed (:c:data: `Py_mod_exec ` function). More
205- precisely, this function is not called if :c:member:`m_size` is greater
205+ precisely, this function is not called if :c:member:`~PyModuleDef. m_size` is greater
206206 than 0 and the module state (as returned by :c:func: `PyModule_GetState `)
207207 is ``NULL``.
208208
@@ -217,7 +217,7 @@ or request "multi-phase initialization" by returning the definition struct itsel
217217 This function is not called if the module state was requested but is not
218218 allocated yet. This is the case immediately after the module is created
219219 and before the module is executed (:c:data: `Py_mod_exec ` function). More
220- precisely, this function is not called if :c:member:`m_size` is greater
220+ precisely, this function is not called if :c:member:`~PyModuleDef. m_size` is greater
221221 than 0 and the module state (as returned by :c:func: `PyModule_GetState `)
222222 is ``NULL``.
223223
@@ -238,7 +238,7 @@ or request "multi-phase initialization" by returning the definition struct itsel
238238 This function is not called if the module state was requested but is not
239239 allocated yet. This is the case immediately after the module is created
240240 and before the module is executed (:c:data: `Py_mod_exec ` function). More
241- precisely, this function is not called if :c:member:`m_size` is greater
241+ precisely, this function is not called if :c:member:`~PyModuleDef. m_size` is greater
242242 than 0 and the module state (as returned by :c:func: `PyModule_GetState `)
243243 is ``NULL``.
244244
0 commit comments