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 ocean-city
Recipients benjamin.peterson, ggenellina, kristjan.jonsson, loewis, ocean-city
Date 2009-01-24.11:07:40
SpamBayes Score 7.2610294e-07
Marked as misclassified No
Message-id <1232795262.6.0.782112139757.issue3677@psf.upfronthosting.co.za>
In-reply-to
Content
>The path variable should be PyMem_Free'd

Sorry if I'm missing something, but is this really needed?
Other PyArg_ParseTuple(args, "s... doesn't seem to have
corresponding PyMem_Free.

static PyObject *
imp_new_module(PyObject *self, PyObject *args)
{
	char *name;
	if (!PyArg_ParseTuple(args, "s:new_module", &name))
		return NULL;
	return PyModule_New(name);
}
History
Date User Action Args
2009-01-24 11:07:42ocean-citysetrecipients: + ocean-city, loewis, ggenellina, kristjan.jonsson, benjamin.peterson
2009-01-24 11:07:42ocean-citysetmessageid: <1232795262.6.0.782112139757.issue3677@psf.upfronthosting.co.za>
2009-01-24 11:07:41ocean-citylinkissue3677 messages
2009-01-24 11:07:40ocean-citycreate