1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
.. _glossary:
Glossary
========
.. if you add new entries, keep the alphabetical sorting!
.. glossary::
``asizeof``
Name of a formerly separate package. Now integrated into Pympler.
``HeapMonitor``
Name of a formerly separate package. Now integrated into Pympler.
``muppy``
Name of a formerly separate package. Now integrated into Pympler.
``pymple, to``
Obtain detailed insight in the size and the lifetime of Python
objects.
``pymple, a``
Undesirable or unexpected runtime behavior like memory bloat.
``summary``
A summary contains information about objects in a summarized format.
Instead of having data of every object, information are grouped by
object type. Each object type is represented by a row, whereas the first
column reflects the object type, the second column the number of
objects of this type, and the third column the size of all of these
objects. The output looks like the following:
============= ============ =============
types # objects total size
============= ============ =============
<type 'dict'> 2 560
<type 'str'> 3 126
<type 'int'> 4 96
<type 'long'> 2 66
<type 'list'> 1 40
============= ============ =============
|