diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-01-21 09:40:43 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 09:40:43 (GMT) |
commit | 274b93a58474b11d37605e567e26240ebf8e623a (patch) | |
tree | 2fe42f615bfbe937d8c2cbc493f627aa2759a99f | |
parent | 3681effafb0d8ac3549a55aae5bc6134cbbd485f (diff) | |
download | cpython-274b93a58474b11d37605e567e26240ebf8e623a.zip cpython-274b93a58474b11d37605e567e26240ebf8e623a.tar.gz cpython-274b93a58474b11d37605e567e26240ebf8e623a.tar.bz2 |
[3.11] gh-101100: Fix sphinx warnings in `Doc/c-api/memory.rst` (GH-114373) (#114378)
gh-101100: Fix sphinx warnings in `Doc/c-api/memory.rst` (GH-114373)
(cherry picked from commit 47133d8d869c94c4d1f340b5481cc3f2cdc7d68b)
Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
-rw-r--r-- | Doc/c-api/memory.rst | 4 | ||||
-rw-r--r-- | Doc/tools/.nitignore | 1 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Doc/c-api/memory.rst b/Doc/c-api/memory.rst index 27005f9..41189ff 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 a67bd8a..79f6341 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 |