Documentation heading updates

This commit is contained in:
William S Fulton 2025-05-13 22:25:20 +01:00
parent 771741d202
commit 6353914211
2 changed files with 4 additions and 1 deletions

View File

@ -1488,6 +1488,7 @@
<li><a href="Python.html#Python_builtin_limitations">Limitations</a> <li><a href="Python.html#Python_builtin_limitations">Limitations</a>
<li><a href="Python.html#Python_builtin_overloads">Operator overloads and slots -- use them!</a> <li><a href="Python.html#Python_builtin_overloads">Operator overloads and slots -- use them!</a>
</ul> </ul>
<li><a href="Python.html#Python_runtime_module">Python runtime module</a>
<li><a href="Python.html#Python_nn30">Memory management</a> <li><a href="Python.html#Python_nn30">Memory management</a>
</ul> </ul>
<li><a href="Python.html#Python_directors">Cross language polymorphism</a> <li><a href="Python.html#Python_directors">Cross language polymorphism</a>

View File

@ -54,6 +54,7 @@
<li><a href="#Python_builtin_limitations">Limitations</a> <li><a href="#Python_builtin_limitations">Limitations</a>
<li><a href="#Python_builtin_overloads">Operator overloads and slots -- use them!</a> <li><a href="#Python_builtin_overloads">Operator overloads and slots -- use them!</a>
</ul> </ul>
<li><a href="#Python_runtime_module">Python runtime module</a>
<li><a href="#Python_nn30">Memory management</a> <li><a href="#Python_nn30">Memory management</a>
</ul> </ul>
<li><a href="#Python_directors">Cross language polymorphism</a> <li><a href="#Python_directors">Cross language polymorphism</a>
@ -2710,6 +2711,7 @@ in the file <tt>python/pyopers.swg</tt> in the SWIG library.
<H3><a name="Python_runtime_module">33.4.3 Python runtime module</a></H3> <H3><a name="Python_runtime_module">33.4.3 Python runtime module</a></H3>
<p> <p>
In addition to the two Python modules that are generated by SWIG, there is also a third 'behind the scenes' Python runtime module. In addition to the two Python modules that are generated by SWIG, there is also a third 'behind the scenes' Python runtime module.
The runtime module is very much an implementation level detail, but is mentioned here for completeness and for the inquisitive! The runtime module is very much an implementation level detail, but is mentioned here for completeness and for the inquisitive!
@ -2754,7 +2756,7 @@ The interpreter session below demonstrates this with a SWIG generated module cal
<b>Compatibility Note:</b> Only the Capsule was stored in the Python runtime module prior to SWIG-4.4.0. <b>Compatibility Note:</b> Only the Capsule was stored in the Python runtime module prior to SWIG-4.4.0.
</p> </p>
<H3><a name="Python_nn30">33.4.3 Memory management</a></H3> <H3><a name="Python_nn30">33.4.4 Memory management</a></H3>
<p>NOTE: Although this section refers to proxy objects, everything here also applies <p>NOTE: Although this section refers to proxy objects, everything here also applies