File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -267,14 +267,14 @@ The following type-oriented macros are provided for convenience. Note that
267267.. c :macro :: PyMem_New(TYPE, n)
268268
269269 Same as :c:func: `PyMem_Malloc `, but allocates ``(n * sizeof(TYPE)) `` bytes of
270- memory. Returns a pointer cast to :c:expr: ` TYPE* `. The memory will not have
270+ memory. Returns a pointer cast to `` TYPE* ` `. The memory will not have
271271 been initialized in any way.
272272
273273
274274.. c :macro :: PyMem_Resize(p, TYPE, n)
275275
276276 Same as :c:func: `PyMem_Realloc `, but the memory block is resized to ``(n *
277- sizeof(TYPE)) `` bytes. Returns a pointer cast to :c:expr: ` TYPE* `. On return,
277+ sizeof(TYPE)) `` bytes. Returns a pointer cast to `` TYPE* ` `. On return,
278278 *p * will be a pointer to the new memory area, or ``NULL `` in the event of
279279 failure.
280280
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ Doc/c-api/gcsupport.rst
1010Doc/c-api/init.rst
1111Doc/c-api/init_config.rst
1212Doc/c-api/intro.rst
13- Doc/c-api/memory.rst
1413Doc/c-api/memoryview.rst
1514Doc/c-api/module.rst
1615Doc/c-api/object.rst
You can’t perform that action at this time.
0 commit comments