summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
diff options
context:
space:
mode:
authorAdam Turner <9087854+AA-Turner@users.noreply.github.com>2022-10-05 15:22:28 (GMT)
committerGitHub <noreply@github.com>2022-10-05 15:22:28 (GMT)
commit0e72606dd4cf3023a4f8c2fe3c58082592b253f7 (patch)
tree3f73db99e426c2089f75d0670cb3054c9311b00c /Doc/whatsnew
parent09aea94d291fed2f3e96558dcd6db04014c3e2fb (diff)
downloadcpython-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.rst6
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.
.. ======================================================================