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 asvetlov, methane, pitrou, thehesiod, vstinner
Date 2018-05-22.16:29:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1527006566.58.0.682650639539.issue33565@psf.upfronthosting.co.za>
In-reply-to
Content
Oh. Usually, I strip traces allocated by tracemalloc using filters:

http://pytracemalloc.readthedocs.io/examples.html#pretty-top

    snapshot = snapshot.filter_traces((
        tracemalloc.Filter(False, "<frozen importlib._bootstrap>"),
        tracemalloc.Filter(False, "<unknown>"),
    ))
History
Date User Action Args
2018-05-22 16:29:26vstinnersetrecipients: + vstinner, pitrou, asvetlov, methane, thehesiod
2018-05-22 16:29:26vstinnersetmessageid: <1527006566.58.0.682650639539.issue33565@psf.upfronthosting.co.za>
2018-05-22 16:29:26vstinnerlinkissue33565 messages
2018-05-22 16:29:26vstinnercreate