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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, benjamin.peterson, christian.heimes, eric.araujo, ezio.melotti, grahamd, jcea, loewis, ncoghlan, pitrou, python-dev, swapnil, vstinner
Date 2011-04-08.12:17:54
SpamBayes Score 0.00010077772
Marked as misclassified No
Message-id <1302265077.23.0.292733879827.issue11803@psf.upfronthosting.co.za>
In-reply-to
Content
Most builtin modules keep static references to common objects: exceptions, types, &co.  These references are currently never freed, but are reused by all sub-interpreters.
It the memory usage stays stable, even after many calls to Py_NewInterpreter()/Py_EndInterpreter(), this is not a bug!
History
Date User Action Args
2011-04-08 12:17:57amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, loewis, jcea, ncoghlan, pitrou, vstinner, christian.heimes, benjamin.peterson, ezio.melotti, eric.araujo, grahamd, swapnil, python-dev
2011-04-08 12:17:57amaury.forgeotdarcsetmessageid: <1302265077.23.0.292733879827.issue11803@psf.upfronthosting.co.za>
2011-04-08 12:17:55amaury.forgeotdarclinkissue11803 messages
2011-04-08 12:17:54amaury.forgeotdarccreate