[Python-checkins] Fix typo in Memory Management doc. (GH-10798)

Serhiy Storchaka webhook-mailer at python.org
Fri Nov 30 02:42:51 EST 2018


https://github.com/python/cpython/commit/a40700439195a119878150f4f0d425c42ca957ef
commit: a40700439195a119878150f4f0d425c42ca957ef
branch: master
author: Kevin Adler <kadler at us.ibm.com>
committer: Serhiy Storchaka <storchaka at gmail.com>
date: 2018-11-30T09:42:47+02:00
summary:

Fix typo in Memory Management doc. (GH-10798)

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

diff --git a/Doc/c-api/memory.rst b/Doc/c-api/memory.rst
index 9f7b13c14729..b79b7e49b67e 100644
--- a/Doc/c-api/memory.rst
+++ b/Doc/c-api/memory.rst
@@ -342,7 +342,7 @@ Configuration                    Name                  PyMem_RawMalloc     PyMem
 Release build                    ``"pymalloc"``        ``malloc``          ``pymalloc``           ``pymalloc``
 Debug build                      ``"pymalloc_debug"``  ``malloc`` + debug  ``pymalloc`` + debug   ``pymalloc`` + debug
 Release build, without pymalloc  ``"malloc"``          ``malloc``          ``malloc``             ``malloc``
-Release build, without pymalloc  ``"malloc_debug"``    ``malloc`` + debug  ``malloc`` + debug     ``malloc`` + debug
+Debug build, without pymalloc    ``"malloc_debug"``    ``malloc`` + debug  ``malloc`` + debug     ``malloc`` + debug
 ===============================  ====================  ==================  =====================  ====================
 
 Legend:



More information about the Python-checkins mailing list