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 jak
Recipients jak, loewis
Date 2009-07-15.11:26:49
SpamBayes Score 3.8168833e-05
Marked as misclassified No
Message-id <1247657211.43.0.89956124326.issue6483@psf.upfronthosting.co.za>
In-reply-to
Content
I believe this may be related to Python/import.c (l. 592):

   def->m_base.m_copy = PyDict_Copy(dict);

It creates a copy of the module dictionary, but the reference count of
this copy is not decreased when the module object is deallocated, thus
causing the objects contained therein to be not allocated as well.
History
Date User Action Args
2009-07-15 11:26:51jaksetrecipients: + jak, loewis
2009-07-15 11:26:51jaksetmessageid: <1247657211.43.0.89956124326.issue6483@psf.upfronthosting.co.za>
2009-07-15 11:26:49jaklinkissue6483 messages
2009-07-15 11:26:49jakcreate