This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients Rhamphoryncus, barry, jlaurila, jszakmeister, ncoghlan, neilo, pitrou, pjmcnerney, rhettinger, tlesher, vstinner
Date 2013-03-06.12:38:40
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1362573520.3.0.0548633045551.issue3329@psf.upfronthosting.co.za>
In-reply-to
Content
To be exhaustive, another patch should be developed to replace all calls for malloc/realloc/free by PyMem_Malloc/PyMem_Realloc/PyMem_Free. PyObject_Malloc() is still using mmap() or malloc() internally for example.

Other examples of functions calling malloc/realloc/free directly: _PySequence_BytesToCharpArray(), block_new() (of pyarena.c), find_key() (of thread.c), PyInterpreterState_New(), win32_wchdir(), posix_getcwd(), Py_Main(), etc.
History
Date User Action Args
2013-03-06 12:38:40vstinnersetrecipients: + vstinner, barry, rhettinger, ncoghlan, Rhamphoryncus, pitrou, jszakmeister, tlesher, jlaurila, neilo, pjmcnerney
2013-03-06 12:38:40vstinnersetmessageid: <1362573520.3.0.0548633045551.issue3329@psf.upfronthosting.co.za>
2013-03-06 12:38:40vstinnerlinkissue3329 messages
2013-03-06 12:38:40vstinnercreate