PEP 445: reorder
This commit is contained in:
parent
5ae891a353
commit
ddb6760c17
|
@ -60,15 +60,15 @@ Proposal
|
|||
|
||||
- ``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
|
||||
``malloc()`` if size is bigger than ``SMALL_REQUEST_THRESHOLD``, and
|
||||
``PyObject_Realloc()`` falls back on ``PyMem_Realloc()`` instead of
|
||||
``realloc()``
|
||||
|
||||
* ``PyMem_Malloc()`` and ``PyMem_Realloc()`` now always call ``malloc()`` and
|
||||
``realloc()``, instead of calling ``PyObject_Malloc()`` and
|
||||
``PyObject_Realloc()`` in debug mode
|
||||
|
||||
|
||||
Performances
|
||||
============
|
||||
|
|
Loading…
Reference in New Issue