summaryrefslogtreecommitdiffstats
path: root/Doc/using
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-03-18 14:10:43 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-03-18 14:10:43 (GMT)
commit9b46a5730268f6f22e13cd0a99adada2932f062b (patch)
treecdcf7f66860c64dc7ffc6804bfeec914cff2a28d /Doc/using
parentee6471ec9068c40daf252af368e5c8ffd8c65472 (diff)
downloadcpython-9b46a5730268f6f22e13cd0a99adada2932f062b.zip
cpython-9b46a5730268f6f22e13cd0a99adada2932f062b.tar.gz
cpython-9b46a5730268f6f22e13cd0a99adada2932f062b.tar.bz2
Doc: fix typos, patch written by Stefan Behnel
Diffstat (limited to 'Doc/using')
-rw-r--r--Doc/using/cmdline.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst
index 4555982..7ff9361 100644
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -639,11 +639,11 @@ conflict.
* ``debug``: install debug hooks on top of the default memory allocator
* ``malloc_debug``: same as ``malloc`` but also install debug hooks
- * ``pymalloc_debug``: same as ``pyalloc`` but also install debug hooks
+ * ``pymalloc_debug``: same as ``pymalloc`` but also install debug hooks
- When is compiled in release mode, the default is ``pymalloc``. When Python
- is compiled in debug mode, the default is ``pymalloc_debug``: debug hooks
- are installed.
+ When Python is compiled in release mode, the default is ``pymalloc``. When
+ compiled in debug mode, the default is ``pymalloc_debug`` and the debug hooks
+ are used automatically.
If Python is configured without ``pymalloc`` support, ``pymalloc`` and
``pymalloc_debug`` are not available, the default is ``malloc`` in release