diff options
author | Adam Turner <9087854+AA-Turner@users.noreply.github.com> | 2022-10-05 15:22:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-05 15:22:28 (GMT) |
commit | 0e72606dd4cf3023a4f8c2fe3c58082592b253f7 (patch) | |
tree | 3f73db99e426c2089f75d0670cb3054c9311b00c /Doc/whatsnew | |
parent | 09aea94d291fed2f3e96558dcd6db04014c3e2fb (diff) | |
download | cpython-0e72606dd4cf3023a4f8c2fe3c58082592b253f7.zip cpython-0e72606dd4cf3023a4f8c2fe3c58082592b253f7.tar.gz cpython-0e72606dd4cf3023a4f8c2fe3c58082592b253f7.tar.bz2 |
gh-93738: Documentation C syntax (Function glob patterns -> literal markup) (#97774)
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/2.5.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/whatsnew/2.5.rst b/Doc/whatsnew/2.5.rst index 6c21682..dfa8f7e 100644 --- a/Doc/whatsnew/2.5.rst +++ b/Doc/whatsnew/2.5.rst @@ -2270,9 +2270,9 @@ code: earlier section :ref:`pep-353` for a discussion of this change. * C API: The obmalloc changes mean that you must be careful to not mix usage - of the :c:func:`PyMem_\*` and :c:func:`PyObject_\*` families of functions. Memory - allocated with one family's :c:func:`\*_Malloc` must be freed with the - corresponding family's :c:func:`\*_Free` function. + of the ``PyMem_*`` and ``PyObject_*`` families of functions. Memory + allocated with one family's ``*_Malloc`` must be freed with the + corresponding family's ``*_Free`` function. .. ====================================================================== |