diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-25 08:40:52 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 1993-10-25 08:40:52 (GMT) |
commit | 52c1f515547a96898879fe60e2432b69ff95cca0 (patch) | |
tree | 294896c67c57a218d91b6c2b11aa38187b3f7cef /Objects | |
parent | 89b3325dc4d6999bb00068e048a76f7eba23a7a5 (diff) | |
download | cpython-52c1f515547a96898879fe60e2432b69ff95cca0.zip cpython-52c1f515547a96898879fe60e2432b69ff95cca0.tar.gz cpython-52c1f515547a96898879fe60e2432b69ff95cca0.tar.bz2 |
import.c: When something is wrong with the .pyc, properly open the .py
file.
object.c: Write allocation statistics to stderr.
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/object.c | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/Objects/object.c b/Objects/object.c index f2d801b..73fba50 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -45,14 +45,15 @@ dump_counts() typeobject *tp; for (tp = type_list; tp; tp = tp->tp_next) - printf("%s alloc'd: %d, freed: %d, max in use: %d\n", - tp->tp_name, tp->tp_alloc, tp->tp_free, - tp->tp_maxalloc); - printf("fast tuple allocs: %d, empty: %d\n", fast_tuple_allocs, - 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); + fprintf(stderr, "%s alloc'd: %d, freed: %d, max in use: %d\n", + tp->tp_name, tp->tp_alloc, tp->tp_free, + tp->tp_maxalloc); + fprintf(stderr, "fast tuple allocs: %d, empty: %d\n", + fast_tuple_allocs, tuple_zero_allocs); + fprintf(stderr, "fast int allocs: pos: %d, neg: %d\n", + quick_int_allocs, quick_neg_int_allocs); + fprintf(stderr, "null strings: %d, 1-strings: %d\n", + null_strings, one_strings); } void |