summaryrefslogtreecommitdiffstats
path: root/Objects/object.c
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2006-05-29 19:39:45 (GMT)
committerGeorg Brandl <georg@python.org>2006-05-29 19:39:45 (GMT)
commit2cfaa34dfa2919803a7caf7cfd99aa21d6c40e06 (patch)
tree68fad69a60835e80f0ed91d3d38ea8e961efd2c3 /Objects/object.c
parent162997efb10131868b3dd7bec63f1c89b12ec3a5 (diff)
downloadcpython-2cfaa34dfa2919803a7caf7cfd99aa21d6c40e06.zip
cpython-2cfaa34dfa2919803a7caf7cfd99aa21d6c40e06.tar.gz
cpython-2cfaa34dfa2919803a7caf7cfd99aa21d6c40e06.tar.bz2
Correct some value converting strangenesses.
Diffstat (limited to 'Objects/object.c')
-rw-r--r--Objects/object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c
index a75c14e..59d3960 100644
--- a/Objects/object.c
+++ b/Objects/object.c
@@ -112,7 +112,7 @@ get_counts(void)
if (result == NULL)
return NULL;
for (tp = type_list; tp; tp = tp->tp_next) {
- v = Py_BuildValue("(siii)", tp->tp_name, tp->tp_allocs,
+ v = Py_BuildValue("(snnn)", tp->tp_name, tp->tp_allocs,
tp->tp_frees, tp->tp_maxalloc);
if (v == NULL) {
Py_DECREF(result);