[Python-checkins] closes bpo-37508: Fix name of type in memory.rst. (GH-14604)

Miss Islington (bot) webhook-mailer at python.org
Sat Jul 6 00:10:01 EDT 2019


https://github.com/python/cpython/commit/cf294c48e4f97117f708c116362208d28ebfe08f
commit: cf294c48e4f97117f708c116362208d28ebfe08f
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2019-07-05T21:09:57-07:00
summary:

closes bpo-37508: Fix name of type in memory.rst. (GH-14604)

(cherry picked from commit 39a5d17a7f1387582eb484422df450bc09a5543e)

Co-authored-by: Hai Shi <shihai1992 at gmail.com>

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

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



More information about the Python-checkins mailing list