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 vstinner
Recipients Saimadhav.Heblikar, ncoghlan, neologix, pitrou, vstinner
Date 2014-07-10.20:30:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1405024256.95.0.216527613382.issue19816@psf.upfronthosting.co.za>
In-reply-to
Content
> The problem is snapshots will by themselves create allocation noise: you cannot really use tracemalloc to detect leaks, only to diagnose the leaks you have detected.

It's trivial to ignore allocations done in the tracemalloc module. My work-in-progress patch uses for example these filters:

tracemalloc_filters = [
   tracemalloc.Filter(False, '<frozen importlib._bootstrap>', all_frames=True),
   tracemalloc.Filter(False, tracemalloc.__file__, all_frames=True),
]
History
Date User Action Args
2014-07-10 20:30:56vstinnersetrecipients: + vstinner, ncoghlan, pitrou, neologix, Saimadhav.Heblikar
2014-07-10 20:30:56vstinnersetmessageid: <1405024256.95.0.216527613382.issue19816@psf.upfronthosting.co.za>
2014-07-10 20:30:56vstinnerlinkissue19816 messages
2014-07-10 20:30:56vstinnercreate