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 tim.peters
Recipients dmalcolm, eli.bendersky, flox, kaifeng, neologix, pitrou, python-dev, tim.peters, vstinner
Date 2013-11-09.04:54:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383972862.0.0.387197309125.issue11849@psf.upfronthosting.co.za>
In-reply-to
Content
[@haypo]
> http://python.dzone.com/articles/diagnosing-memory-leaks-python
> Great job! Using mmap() for arenas is the best solution for this issue.

?  I read the article, and they stopped when they found "there seemed to be a ton of tiny little objects around, like integers.".  Ints aren't allocated from arenas to begin wtih - they have their own (immortal & unbounded) free list in Python2.  No change to pymalloc could make any difference to that.
History
Date User Action Args
2013-11-09 04:54:22tim.peterssetrecipients: + tim.peters, pitrou, vstinner, eli.bendersky, flox, dmalcolm, neologix, python-dev, kaifeng
2013-11-09 04:54:22tim.peterssetmessageid: <1383972862.0.0.387197309125.issue11849@psf.upfronthosting.co.za>
2013-11-09 04:54:21tim.peterslinkissue11849 messages
2013-11-09 04:54:21tim.peterscreate