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 bkabrda
Recipients bkabrda, vstinner
Date 2014-01-10.10:33:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1389350010.61.0.787957293986.issue19527@psf.upfronthosting.co.za>
In-reply-to
Content
As noted in Misc/SpecialBuilds:

COUNT_ALLOCS
------------

Each type object grows three new members:

    /* Number of times an object of this type was allocated. */
    int tp_allocs;

    /* Number of times an object of this type was deallocated. */
    int tp_frees;

    /* Highwater mark:  the maximum value of tp_allocs - tp_frees so
     * far; or, IOW, the largest number of objects of this type alive at
     * the same time.
     */
    int tp_maxalloc;

...
We use this for Fedora's python debug build to get some interesting debugging info. (If you try to "grep -r" through Python 3.4 source code, you'll find quite a few ifdefs with COUNT_ALLOCS.)
History
Date User Action Args
2014-01-10 10:33:30bkabrdasetrecipients: + bkabrda, vstinner
2014-01-10 10:33:30bkabrdasetmessageid: <1389350010.61.0.787957293986.issue19527@psf.upfronthosting.co.za>
2014-01-10 10:33:30bkabrdalinkissue19527 messages
2014-01-10 10:33:30bkabrdacreate