Doc: fix typos, patch written by Stefan Behnel

This commit is contained in:
Victor Stinner 2016-03-18 15:10:43 +01:00
parent ee6471ec90
commit 9b46a57302
3 changed files with 6 additions and 6 deletions

View file

@ -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