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 nascheme
Recipients benjamin.peterson, loewis, nascheme
Date 2010-10-30.03:48:48
SpamBayes Score 0.00698389
Marked as misclassified No
Message-id <1288410530.83.0.095379048444.issue10241@psf.upfronthosting.co.za>
In-reply-to
Content
I'm trying implement some saner module shutdown procedure (similar to issue 812369).  One of the many problems I've run into is that the GC doesn't know about the m_copy attribute of modules. 

I think the attached patch is correct.  tp_tranverse exposes m_copy if it is non-NULL.  tp_clear calls Py_CLEAR on it.
History
Date User Action Args
2010-10-30 03:48:50naschemesetrecipients: + nascheme, loewis, benjamin.peterson
2010-10-30 03:48:50naschemesetmessageid: <1288410530.83.0.095379048444.issue10241@psf.upfronthosting.co.za>
2010-10-30 03:48:49naschemelinkissue10241 messages
2010-10-30 03:48:48naschemecreate