Home
last modified time | relevance | path

Searched refs:PyMem_Del (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Include/
Dpymem.h115 #define PyMem_Del PyMem_Free macro
/external/python/cpython2/Doc/c-api/
Dmemory.rst144 .. c:function:: void PyMem_Del(void *p)
185 PyMem_Del(buf); /* allocated with PyMem_New */
199 PyMem_Del(buf3); /* Wrong -- should be PyMem_Free() */
201 free(buf1); /* Fatal -- should be PyMem_Del() */
/external/python/cpython2/Modules/cjkcodecs/
Dmultibytecodec.c808 PyMem_Del(inbuf_tmp); in encoder_encode_stateful()
814 PyMem_Del(inbuf_tmp); in encoder_encode_stateful()
1092 PyMem_Del(wdata); in mbidecoder_decode()
1099 PyMem_Del(wdata); in mbidecoder_decode()
/external/python/cpython2/Doc/whatsnew/
D2.1.rst707 using :func:`PyMem_Del`, not :func:`free`. A few modules included with Python