commit | 2cfaa34dfa2919803a7caf7cfd99aa21d6c40e06 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Mon May 29 19:39:45 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Mon May 29 19:39:45 2006 +0000 |
tree | 68fad69a60835e80f0ed91d3d38ea8e961efd2c3 | |
parent | 162997efb10131868b3dd7bec63f1c89b12ec3a5 [diff] [blame] |
Correct some value converting strangenesses.
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 @@ 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);