summaryrefslogtreecommitdiffstats
path: root/Objects/tupleobject.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2009-01-07 18:40:40 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2009-01-07 18:40:40 (GMT)
commitb90304acb9a766a3f2de76789e9b523cd032440b (patch)
tree00cfaf84129cae9627afe86d23c62e67dd12efd9 /Objects/tupleobject.c
parente6dc53120d52f58057fd1a6d666d21cb9d71c08d (diff)
downloadcpython-b90304acb9a766a3f2de76789e9b523cd032440b.zip
cpython-b90304acb9a766a3f2de76789e9b523cd032440b.tar.gz
cpython-b90304acb9a766a3f2de76789e9b523cd032440b.tar.bz2
Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.
Diffstat (limited to 'Objects/tupleobject.c')
-rw-r--r--Objects/tupleobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c
index b1a7003..d7cb25a 100644
--- a/Objects/tupleobject.c
+++ b/Objects/tupleobject.c
@@ -19,8 +19,8 @@ static PyTupleObject *free_list[PyTuple_MAXSAVESIZE];
static int numfree[PyTuple_MAXSAVESIZE];
#endif
#ifdef COUNT_ALLOCS
-int fast_tuple_allocs;
-int tuple_zero_allocs;
+Py_ssize_t fast_tuple_allocs;
+Py_ssize_t tuple_zero_allocs;
#endif
PyObject *