From: Hai Shi Date: Sat, 6 Jul 2019 04:03:13 +0000 (-0500) Subject: closes bpo-37508: Fix name of type in memory.rst. (GH-14604) X-Git-Tag: v3.9.0a1~1082 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=39a5d17a7f1387582eb484422df450bc09a5543e;p=thirdparty%2FPython%2Fcpython.git closes bpo-37508: Fix name of type in memory.rst. (GH-14604) --- diff --git a/Doc/c-api/memory.rst b/Doc/c-api/memory.rst index ab49e48782d7..f97ae453487f 100644 --- a/Doc/c-api/memory.rst +++ b/Doc/c-api/memory.rst @@ -67,7 +67,7 @@ example:: In this example, the memory request for the I/O buffer is handled by the C library allocator. The Python memory manager is involved only in the allocation -of the string object returned as a result. +of the bytes object returned as a result. In most situations, however, it is recommended to allocate memory from the Python heap specifically because the latter is under control of the Python