PEP 445: reorder

This commit is contained in:
Victor Stinner 2013-06-16 04:03:15 +02:00
parent 5ae891a353
commit ddb6760c17
1 changed files with 4 additions and 4 deletions

View File

@ -60,15 +60,15 @@ Proposal
- ``PyMem_SetupDebugHooks()`` - ``PyMem_SetupDebugHooks()``
* ``PyMem_Malloc()`` and ``PyMem_Realloc()`` now always call ``malloc()`` and
``realloc()``, instead of calling ``PyObject_Malloc()`` and
``PyObject_Realloc()`` in debug mode
* ``PyObject_Malloc()`` now falls back on ``PyMem_Malloc()`` instead of * ``PyObject_Malloc()`` now falls back on ``PyMem_Malloc()`` instead of
``malloc()`` if size is bigger than ``SMALL_REQUEST_THRESHOLD``, and ``malloc()`` if size is bigger than ``SMALL_REQUEST_THRESHOLD``, and
``PyObject_Realloc()`` falls back on ``PyMem_Realloc()`` instead of ``PyObject_Realloc()`` falls back on ``PyMem_Realloc()`` instead of
``realloc()`` ``realloc()``
* ``PyMem_Malloc()`` and ``PyMem_Realloc()`` now always call ``malloc()`` and
``realloc()``, instead of calling ``PyObject_Malloc()`` and
``PyObject_Realloc()`` in debug mode
Performances Performances
============ ============