summaryrefslogtreecommitdiff
path: root/Doc/using/cmdline.rst
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-03-23 16:57:51 +0100
committerVictor Stinner <victor.stinner@gmail.com>2016-03-23 16:57:51 +0100
commitce18a035e6c4b0ed0a4392ff232331822e7e6a94 (patch)
treea3646a7e770a4577000e3b86482c8f824f4801c0 /Doc/using/cmdline.rst
parent148591b9576dde4bcac9ffd8f41fa19c0be03cd0 (diff)
downloadcpython-ce18a035e6c4b0ed0a4392ff232331822e7e6a94.tar.gz
Fix typo in doc: avoid the french "& cie" :-)
Diffstat (limited to 'Doc/using/cmdline.rst')
-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 7ff9361ce0..c1c700cc4b 100644
--- a/Doc/using/cmdline.rst
+++ b/Doc/using/cmdline.rst
@@ -628,12 +628,12 @@ conflict.
Set the family of memory allocators used by Python:
* ``malloc``: use the :c:func:`malloc` function of the C library
- for all Python memory allocators (:c:func:`PyMem_RawMalloc`,
- :c:func:`PyMem_Malloc`, :c:func:`PyObject_Malloc` & cie).
+ for all Python memory allocators (ex: :c:func:`PyMem_RawMalloc`,
+ :c:func:`PyMem_Malloc` and :c:func:`PyObject_Malloc`).
* ``pymalloc``: :c:func:`PyObject_Malloc`, :c:func:`PyObject_Calloc` and
:c:func:`PyObject_Realloc` use the :ref:`pymalloc allocator <pymalloc>`.
- Other Python memory allocators (:c:func:`PyMem_RawMalloc`,
- :c:func:`PyMem_Malloc` & cie) use :c:func:`malloc`.
+ Other Python memory allocators (ex: :c:func:`PyMem_RawMalloc` and
+ :c:func:`PyMem_Malloc`) use :c:func:`malloc`.
Install debug hooks: