diff options
Diffstat (limited to 'Objects/object.c')
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Objects/object.c b/Objects/object.c index bc0aeed..f2d801b 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -38,6 +38,7 @@ long ref_total; static typeobject *type_list; extern int tuple_zero_allocs, fast_tuple_allocs; extern int quick_int_allocs, quick_neg_int_allocs; +extern int null_strings, one_strings; void dump_counts() { @@ -51,6 +52,7 @@ dump_counts() tuple_zero_allocs); printf("fast int allocs: pos: %d, neg: %d\n", quick_int_allocs, quick_neg_int_allocs); + printf("null strings: %d, 1-strings: %d\n", null_strings, one_strings); } void |