https://github.com/python/cpython/commit/47133d8d869c94c4d1f340b5481cc3f2cdc7d68b
commit: 47133d8d869c94c4d1f340b5481cc3f2cdc7d68b
branch: main
author: Nikita Sobolev <[email protected]>
committer: hugovk <[email protected]>
date: 2024-01-21T11:34:43+02:00
summary:

gh-101100: Fix sphinx warnings in `Doc/c-api/memory.rst` (#114373)

files:
M Doc/c-api/memory.rst
M Doc/tools/.nitignore

diff --git a/Doc/c-api/memory.rst b/Doc/c-api/memory.rst
index 1f392e55078e77..c05282ffc59521 100644
--- a/Doc/c-api/memory.rst
+++ b/Doc/c-api/memory.rst
@@ -267,14 +267,14 @@ The following type-oriented macros are provided for 
convenience.  Note  that
 .. c:macro:: PyMem_New(TYPE, n)
 
    Same as :c:func:`PyMem_Malloc`, but allocates ``(n * sizeof(TYPE))`` bytes 
of
-   memory.  Returns a pointer cast to :c:expr:`TYPE*`.  The memory will not 
have
+   memory.  Returns a pointer cast to ``TYPE*``.  The memory will not have
    been initialized in any way.
 
 
 .. c:macro:: PyMem_Resize(p, TYPE, n)
 
    Same as :c:func:`PyMem_Realloc`, but the memory block is resized to ``(n *
-   sizeof(TYPE))`` bytes.  Returns a pointer cast to :c:expr:`TYPE*`. On 
return,
+   sizeof(TYPE))`` bytes.  Returns a pointer cast to ``TYPE*``. On return,
    *p* will be a pointer to the new memory area, or ``NULL`` in the event of
    failure.
 
diff --git a/Doc/tools/.nitignore b/Doc/tools/.nitignore
index 5935d059877a91..4f2e4fdd43490c 100644
--- a/Doc/tools/.nitignore
+++ b/Doc/tools/.nitignore
@@ -10,7 +10,6 @@ Doc/c-api/gcsupport.rst
 Doc/c-api/init.rst
 Doc/c-api/init_config.rst
 Doc/c-api/intro.rst
-Doc/c-api/memory.rst
 Doc/c-api/memoryview.rst
 Doc/c-api/module.rst
 Doc/c-api/object.rst

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to