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.

作者 ocean-city
收信人 benjamin.peterson, ggenellina, kristjan.jonsson, loewis, ocean-city
日期 2009-01-24.11:07:40
SpamBayes Score 7.2610294e-07
Marked as misclassified
Message-id <1232795262.6.0.782112139757.issue3677@psf.upfronthosting.co.za>
In-reply-to
内容
>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);
}
历史
日期 用户 动作 参数
2009-01-24 11:07:42ocean-city修改recipients: + ocean-city, loewis, ggenellina, kristjan.jonsson, benjamin.peterson
2009-01-24 11:07:42ocean-city修改messageid: <1232795262.6.0.782112139757.issue3677@psf.upfronthosting.co.za>
2009-01-24 11:07:41ocean-city链接issue3677 messages
2009-01-24 11:07:40ocean-city创建