diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-03-23 15:57:51 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-03-23 15:57:51 (GMT) |
commit | d1700a9360e55f05b2dec5654353bbd947ba19e8 (patch) | |
tree | a61d6564cc9bb5bbef6e72e9f66cfb9007c193a7 /Doc/c-api | |
parent | 1c3069aed6098804f3ce4c810e07dbd02fc797c8 (diff) | |
download | cpython-d1700a9360e55f05b2dec5654353bbd947ba19e8.zip cpython-d1700a9360e55f05b2dec5654353bbd947ba19e8.tar.gz cpython-d1700a9360e55f05b2dec5654353bbd947ba19e8.tar.bz2 |
Fix typo in doc: avoid the french "& cie" :-)
Diffstat (limited to 'Doc/c-api')
-rw-r--r-- | Doc/c-api/memory.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/c-api/memory.rst b/Doc/c-api/memory.rst index c2e2442..bd0bc12 100644 --- a/Doc/c-api/memory.rst +++ b/Doc/c-api/memory.rst @@ -378,7 +378,7 @@ with a fixed size of 256 KB. It falls back to :c:func:`PyMem_RawMalloc` and :c:func:`PyMem_RawRealloc` for allocations larger than 512 bytes. *pymalloc* is the default allocator of the :c:data:`PYMEM_DOMAIN_OBJ` domain -(:c:func:`PyObject_Malloc` & cie). +(ex: :c:func:`PyObject_Malloc`). The arena allocator uses the following functions: |