class tracemalloc.Statistic
Statistic on memory allocations.
Snapshot.statistics()
returns a list of Statistic
instances.
See also the StatisticDiff
class.
-
count
-
Number of memory blocks (
int
).
-
size
-
Total size of memory blocks in bytes (
int
).
-
traceback
-
Traceback where the memory block was allocated,
Traceback
instance.
Please login to continue.