Message187417
Sounds reasonable to me. Note that it won't remove the special-casing in gcmodule.c:
static int
has_finalizer(PyObject *op)
{
if (PyGen_CheckExact(op))
return PyGen_NeedsFinalizing((PyGenObject *)op);
else
return op->ob_type->tp_del != NULL;
} |
|
Date |
User |
Action |
Args |
2013-04-20 11:47:24 | pitrou | set | recipients:
+ pitrou, ncoghlan, sbt |
2013-04-20 11:47:24 | pitrou | set | messageid: <1366458444.78.0.586527571281.issue17800@psf.upfronthosting.co.za> |
2013-04-20 11:47:24 | pitrou | link | issue17800 messages |
2013-04-20 11:47:24 | pitrou | create | |
|