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 pitrou
Recipients amaury.forgeotdarc, benjamin.peterson, nnorwitz, pitrou
Date 2008-09-05.22:29:39
SpamBayes Score 5.9767515e-08
Marked as misclassified No
Message-id <1220653777.13393.6.camel@fsol>
In-reply-to <1220653185.68.0.152296612886.issue3660@psf.upfronthosting.co.za>
Content
> test_distutils will be difficult; the leak is around the "import xx" in
> Lib/distutils/tests/test_build_ext.py.
> 
> And Python/import.c says:
> /* To prevent initializing an extension module more than once, we keep a
> static dictionary 'extensions' keyed [...] by filename (for dynamically
> loaded modules). A copy of the module's dictionary is stored [...] 
> */
> 
> This dictionary keeps growing with random filenames in the temp
> directory. I can't see a way to clean it.

If it's just that (one leaked string per each extension module import),
I think we can live with it.
History
Date User Action Args
2008-09-05 22:29:40pitrousetrecipients: + pitrou, nnorwitz, amaury.forgeotdarc, benjamin.peterson
2008-09-05 22:29:39pitroulinkissue3660 messages
2008-09-05 22:29:39pitroucreate