commit | b90304acb9a766a3f2de76789e9b523cd032440b | [log] [tgz] |
---|---|---|
author | Martin v. Löwis <martin@v.loewis.de> | Wed Jan 07 18:40:40 2009 +0000 |
committer | Martin v. Löwis <martin@v.loewis.de> | Wed Jan 07 18:40:40 2009 +0000 |
tree | 00cfaf84129cae9627afe86d23c62e67dd12efd9 | |
parent | e6dc53120d52f58057fd1a6d666d21cb9d71c08d [diff] [blame] |
Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.
diff --git a/Objects/intobject.c b/Objects/intobject.c index 9baee8e..d4532f4 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c
@@ -78,7 +78,8 @@ static PyIntObject *small_ints[NSMALLNEGINTS + NSMALLPOSINTS]; #endif #ifdef COUNT_ALLOCS -int quick_int_allocs, quick_neg_int_allocs; +Py_ssize_t quick_int_allocs; +Py_ssize_t quick_neg_int_allocs; #endif PyObject *