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 amaury.forgeotdarc, christian.heimes, georg.brandl, kristjan.jonsson, ncoghlan, serhiy.storchaka, vstinner
Date 2013-06-15.00:44:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371257047.45.0.676211934604.issue18203@psf.upfronthosting.co.za>
In-reply-to
Content
malloc_init.patch: Patch for functions called at Python initialization.

This patch is not complete: to parse "-X" option (PySys_AddXOption) and "-W" (PySys_AddWarnOption), PyMem_Malloc() and PyObject_Malloc() are still called indirectly. Fixing this issue may need to reorganize completly how Python is initialized, because we need to have basic Python types (ex: Unicode) to be ready to be able to parse the command line. But we cannot initialize too much because the Python initialization also depends on options from the command line...
History
Date User Action Args
2013-06-15 00:44:07vstinnersetrecipients: + vstinner, georg.brandl, amaury.forgeotdarc, ncoghlan, kristjan.jonsson, christian.heimes, serhiy.storchaka
2013-06-15 00:44:07vstinnersetmessageid: <1371257047.45.0.676211934604.issue18203@psf.upfronthosting.co.za>
2013-06-15 00:44:07vstinnerlinkissue18203 messages
2013-06-15 00:44:07vstinnercreate