diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-01-11 17:13:55 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-01-11 17:13:55 (GMT) |
commit | a4a37fefb645316c2694f9ef50fa3bbddb41d0ba (patch) | |
tree | e2ae87b245f8b6795f64df1797966d6731af419b /Objects/tupleobject.c | |
parent | c7d484de9bf61ce38cbbe5a071871100cc04c6d4 (diff) | |
download | cpython-a4a37fefb645316c2694f9ef50fa3bbddb41d0ba.zip cpython-a4a37fefb645316c2694f9ef50fa3bbddb41d0ba.tar.gz cpython-a4a37fefb645316c2694f9ef50fa3bbddb41d0ba.tar.bz2 |
Merged revisions 68381 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r68381 | martin.v.loewis | 2009-01-07 12:40:40 -0600 (Wed, 07 Jan 2009) | 2 lines
Issue #4850: Change COUNT_ALLOCS variables to Py_ssize_t.
........
Diffstat (limited to 'Objects/tupleobject.c')
-rw-r--r-- | Objects/tupleobject.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/tupleobject.c b/Objects/tupleobject.c index 679ba8f..9da05ee 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 * |