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 Albert.Zeyer
Recipients Albert.Zeyer
Date 2015-01-21.17:53:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1421862824.96.0.769285888679.issue23291@psf.upfronthosting.co.za>
In-reply-to
Content
The documentation about Py_Finalize() about freeing objects is not exactly clear.

Esp., when I have called Py_INCREF somewhere, those objects will always have ob_refcnt > 0 unless I call Py_DECREF somewhere, what about these objects? Will they be freed in Py_Finalize() or not? If not, what can I do? I guess calling Py_DECREF after Py_Finalize() is not allowed.

I studied the Py_Finalize() code but I'm not exactly sure. It looks like such objects would not get freed (unless some implicit magic is happening somewhere). The comment about the last commented-out PyGC_Collect() call is also insightful and somewhat unsatisfying.

Maybe PyObject_Free() still works, although that would not free any further referenced objects, I guess. Also, I'm not exactly sure about the pymalloc arenas.

With pymalloc, maybe we could just free all pymalloc arenas and it would free all memory allocated by Python objects? Of course, that would not call any advanced tp_dealloc functions which might be important to be called, but we would never ever call those anyway anymore, or would we (how?)?
So, maybe it would be good to do that?
History
Date User Action Args
2015-01-21 17:53:45Albert.Zeyersetrecipients: + Albert.Zeyer
2015-01-21 17:53:44Albert.Zeyersetmessageid: <1421862824.96.0.769285888679.issue23291@psf.upfronthosting.co.za>
2015-01-21 17:53:44Albert.Zeyerlinkissue23291 messages
2015-01-21 17:53:44Albert.Zeyercreate