File tree 2 files changed +2
-3
lines changed
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
267
267
.. c :macro :: PyMem_New(TYPE, n)
268
268
269
269
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
271
271
been initialized in any way.
272
272
273
273
274
274
.. c :macro :: PyMem_Resize(p, TYPE, n)
275
275
276
276
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,
278
278
*p * will be a pointer to the new memory area, or ``NULL `` in the event of
279
279
failure.
280
280
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ Doc/c-api/gcsupport.rst
10
10
Doc/c-api/init.rst
11
11
Doc/c-api/init_config.rst
12
12
Doc/c-api/intro.rst
13
- Doc/c-api/memory.rst
14
13
Doc/c-api/memoryview.rst
15
14
Doc/c-api/module.rst
16
15
Doc/c-api/object.rst
You can’t perform that action at this time.
0 commit comments