We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
python
Learn more about funding links in repositories.
Report abuse
1 parent 38a7f78 commit cdf7097Copy full SHA for cdf7097
Tools/scripts/summarize_stats.py
@@ -278,7 +278,7 @@ def emit_call_stats(stats):
278
def emit_object_stats(stats):
279
with Section("Object stats", summary="allocations, frees and dict materializatons"):
280
total_materializations = stats.get("Object new values")
281
- total_allocations = stats.get("Object allocations")
+ total_allocations = stats.get("Object allocations") + stats.get("Object allocations from freelist")
282
total_increfs = stats.get("Object interpreter increfs") + stats.get("Object increfs")
283
total_decrefs = stats.get("Object interpreter decrefs") + stats.get("Object decrefs")
284
rows = []
0 commit comments